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:
Michael DeHaan 2014-03-16 15:10:31 -05:00
commit b8f1e4f765

View file

@ -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':