Commit 33efbf72 by e0d Committed by Feanil Patel

removing uneeded coercion

parent eaa5f7d0
......@@ -99,7 +99,7 @@ def zip_to_dict(module, input, key_key, value_key):
results = {}
for item in input:
results[item[unicode(key_key)]]=item[unicode(value_key)]
results[item[key_key]]=item[value_key]
module.exit_json(function_output = results)
......
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