Merge pull request #6134 from veeti/include_with_items_path
Show the offending file name with the include + with_items error
This commit is contained in:
commit
b8f1e4f765
1 changed files with 5 additions and 1 deletions
|
@ -517,7 +517,11 @@ class Play(object):
|
|||
include_vars = {}
|
||||
for k in x:
|
||||
if k.startswith("with_"):
|
||||
utils.deprecated("include + with_items is a removed deprecated feature", "1.5", removed=True)
|
||||
if original_file:
|
||||
offender = " (in %s)" % original_file
|
||||
else:
|
||||
offender = ""
|
||||
utils.deprecated("include + with_items is a removed deprecated feature" + offender, "1.5", removed=True)
|
||||
elif k.startswith("when_"):
|
||||
utils.deprecated("\"when_<criteria>:\" is a removed deprecated feature, use the simplified 'when:' conditional directly", None, removed=True)
|
||||
elif k == 'when':
|
||||
|
|
Loading…
Reference in a new issue