mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 04:40:22 -07:00
Fix name of action plugin in error message (#41665)
This commit is contained in:
parent
3e6c76fc2e
commit
729e7471d6
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ class ActionModule(ActionBase):
|
||||||
elif arg in self.VALID_ALL:
|
elif arg in self.VALID_ALL:
|
||||||
pass
|
pass
|
||||||
else:
|
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:
|
if dirs and files:
|
||||||
raise AnsibleError("Your are mixing file only and dir only arguments, these are incompatible")
|
raise AnsibleError("Your are mixing file only and dir only arguments, these are incompatible")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue