1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix parse_kv invocation in group_by to use imported name

Fixes #2277.
This commit is contained in:
Daniel Hokka Zakrisson 2013-03-02 15:18:16 +01:00
parent 622b8dfe32
commit 43ce2caa4f

View file

@ -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(utils.parse_kv(module_args)) args.update(parse_kv(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.")