Merge pull request #6352 from sethwoodworth/patch-1
Spelling correction in loop warning, removes unnecessary c
This commit is contained in:
commit
d636c93a9b
1 changed files with 2 additions and 2 deletions
|
@ -85,7 +85,7 @@ class Task(object):
|
||||||
elif x.startswith("with_"):
|
elif x.startswith("with_"):
|
||||||
|
|
||||||
if isinstance(ds[x], basestring) and ds[x].lstrip().startswith("{{"):
|
if isinstance(ds[x], basestring) and ds[x].lstrip().startswith("{{"):
|
||||||
utils.warning("It is unneccessary to use '{{' in loops, leave variables in loop expressions bare.")
|
utils.warning("It is unnecessary to use '{{' in loops, leave variables in loop expressions bare.")
|
||||||
|
|
||||||
plugin_name = x.replace("with_","")
|
plugin_name = x.replace("with_","")
|
||||||
if plugin_name in utils.plugins.lookup_loader:
|
if plugin_name in utils.plugins.lookup_loader:
|
||||||
|
@ -97,7 +97,7 @@ class Task(object):
|
||||||
|
|
||||||
elif x in [ 'changed_when', 'failed_when', 'when']:
|
elif x in [ 'changed_when', 'failed_when', 'when']:
|
||||||
if isinstance(ds[x], basestring) and ds[x].lstrip().startswith("{{"):
|
if isinstance(ds[x], basestring) and ds[x].lstrip().startswith("{{"):
|
||||||
utils.warning("It is unneccessary to use '{{' in conditionals, leave variables in loop expressions bare.")
|
utils.warning("It is unnecessary to use '{{' in conditionals, leave variables in loop expressions bare.")
|
||||||
elif x.startswith("when_"):
|
elif x.startswith("when_"):
|
||||||
utils.deprecated("The 'when_' conditional has been removed. Switch to using the regular unified 'when' statements as described on docs.ansible.com.","1.5", removed=True)
|
utils.deprecated("The 'when_' conditional has been removed. Switch to using the regular unified 'when' statements as described on docs.ansible.com.","1.5", removed=True)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue