Fix parse_kv invocation in group_by to use imported name

Fixes #2277.
parent 622b8dfe
......@@ -40,7 +40,7 @@ class ActionModule(object):
args = {}
if complex_args:
args.update(complex_args)
args.update(utils.parse_kv(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