Commit cd0134d2 by Denis Phillips

Used module_args passed to function instead of from runner

parent 9b52ce8a
......@@ -41,7 +41,7 @@ class ActionModule(object):
args = {}
if complex_args:
args.update(complex_args)
args.update(parse_kv(self.runner.module_args))
args.update(parse_kv(module_args))
if not 'key' in args:
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