Give more information when a task is empty

I made a typo in a playbook and was great by:

    ERROR: expecting dict; got: None

The issue was a single - on the last line of a playbook.
With the name of the file, I was able to see right away where the
error was.
pull/7126/head
Michael Scherer 11 years ago
parent e83a494e41
commit 0f0f5ff1ce

@ -505,7 +505,7 @@ class Play(object):
included_additional_conditions = list(old_conditions)
if not isinstance(x, dict):
raise errors.AnsibleError("expecting dict; got: %s" % x)
raise errors.AnsibleError("expecting dict; got: %s, error in %s" % (x, original_file))
# evaluate sudo vars for current and child tasks
included_sudo_vars = {}

Loading…
Cancel
Save