group_by needs the untemplated module_args

pull/4420/head
Daniel Hokka Zakrisson 2013-03-02 16:30:30 +01:00
parent dc0515a88a
commit 5d82b4b1b7
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ class ActionModule(object):
args = {}
if 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:
raise ae("'key' is a required argument.")