Codebase list sugar-pippy-activity / 9521764
Fix TypeError: Object of type bytes is not JSON serializable Traceback (most recent call last): File "/usr/share/sugar/activities/Pippy.activity/pippy_app.py", line 1074, in write_file pippy_data = json.dumps(session_list) TypeError: Object of type bytes is not JSON serializable James Cameron 4 years ago
1 changed file(s) with 1 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
302302
303303 label = label.replace(' ', '_')
304304 if isinstance(label, str):
305 label = \
306 unicodedata.normalize('NFKD', label).encode('ascii', 'ignore')
305 label = unicodedata.normalize('NFKD', label)
307306
308307 return label
309308