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 = {}
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.")