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

ignore unicode errors in stdout

This commit is contained in:
Les Aker 2013-05-19 11:57:08 -04:00
parent 14aa54172c
commit 2adc335481

View file

@ -127,6 +127,9 @@ def jsonify(result, format=False):
if result is None:
return "{}"
result2 = result.copy()
for key, value in result2.items():
if type(value) is str:
result2[key] = value.decode('utf-8', 'ignore')
if format:
return json.dumps(result2, sort_keys=True, indent=4)
else: