Skip to content

Commit

Permalink
Fix name of action plugin in error message (ansible#41665)
Browse files Browse the repository at this point in the history
  • Loading branch information
agaffney authored and amenonsen committed Jun 18, 2018
1 parent 3e6c76f commit 729e747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/plugins/action/include_vars.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def run(self, tmp=None, task_vars=None):
elif arg in self.VALID_ALL:
pass
else:
raise AnsibleError('{0} is not a valid option in debug'.format(arg))
raise AnsibleError('{0} is not a valid option in include_vars'.format(arg))

if dirs and files:
raise AnsibleError("Your are mixing file only and dir only arguments, these are incompatible")
Expand Down

0 comments on commit 729e747

Please sign in to comment.