group_by needs the untemplated module_args

parent dc0515a8
...@@ -40,7 +40,7 @@ class ActionModule(object): ...@@ -40,7 +40,7 @@ class ActionModule(object):
args = {} args = {}
if complex_args: if complex_args:
args.update(complex_args) args.update(complex_args)
args.update(parse_kv(module_args)) args.update(parse_kv(self.runner.module_args))
if not 'key' in args: if not 'key' in args:
raise ae("'key' is a required argument.") raise ae("'key' is a required argument.")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment