mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02: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:
|
||||
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")
|
||||
|
|
Loading…
Reference in a new issue