Commit 71934a11 by Toshio Kuratomi Committed by James Cammarata

Another place that needs to be json_dict_bytes_to_unicode

Conflicts:
	v2/ansible/inventory/script.py
parent 1771413c
......@@ -144,7 +144,7 @@ class InventoryScript(object):
if out.strip() == '':
return dict()
try:
return json_dict_unicode_to_bytes(utils.parse_json(out))
return json_dict_bytes_to_unicode(utils.parse_json(out))
except ValueError:
raise errors.AnsibleError("could not parse post variable response: %s, %s" % (cmd, out))
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