Merge pull request #14379 from defionscode/mod_args

Added more info to the no action detected error
This commit is contained in:
Brian Coca 2016-02-08 16:52:53 -05:00
commit f9bf237065

View file

@ -301,7 +301,7 @@ class ModuleArgsParser:
obj=self._task_ds)
else:
raise AnsibleParserError("no action detected in task", obj=self._task_ds)
raise AnsibleParserError("no action detected in task. This often indicates a misspelled module name, or incorrect module path.", obj=self._task_ds)
elif args.get('_raw_params', '') != '' and action not in RAW_PARAM_MODULES:
templar = Templar(loader=None)
raw_params = args.pop('_raw_params')