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 "{}"
|
||||
result2 = result.copy()
|
||||
for key, value in result2.items():
|
||||
if type(value) is str:
|
||||
result2[key] = value.decode('utf-8', 'ignore')
|
||||
if type(value) is str:
|
||||
result2[key] = value.decode('utf-8', 'ignore')
|
||||
if format:
|
||||
return json.dumps(result2, sort_keys=True, indent=4)
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue