mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
corrected indentation
This commit is contained in:
parent
2adc335481
commit
1179d1bbd8
1 changed files with 2 additions and 2 deletions
|
@ -128,8 +128,8 @@ def jsonify(result, format=False):
|
||||||
return "{}"
|
return "{}"
|
||||||
result2 = result.copy()
|
result2 = result.copy()
|
||||||
for key, value in result2.items():
|
for key, value in result2.items():
|
||||||
if type(value) is str:
|
if type(value) is str:
|
||||||
result2[key] = value.decode('utf-8', 'ignore')
|
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