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:
parent
14aa54172c
commit
2adc335481
1 changed files with 3 additions and 0 deletions
|
@ -127,6 +127,9 @@ def jsonify(result, format=False):
|
||||||
if result is None:
|
if result is None:
|
||||||
return "{}"
|
return "{}"
|
||||||
result2 = result.copy()
|
result2 = result.copy()
|
||||||
|
for key, value in result2.items():
|
||||||
|
if type(value) is str:
|
||||||
|
result2[key] = value.decode('utf-8', 'ignore')
|
||||||
if format:
|
if format:
|
||||||
return json.dumps(result2, sort_keys=True, indent=4)
|
return json.dumps(result2, sort_keys=True, indent=4)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue