Commit 159ba7d6 by Michael DeHaan

Merge pull request #2956 from akerl/unicodefix

ignore unicode errors in stdout
parents 9d92125a 1179d1bb
......@@ -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:
......
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