gtalk_export
gtalk_export copied to clipboard
Can't parse timstamp from Hangouts.json?
Processing json file at Hangouts.json
Traceback (most recent call last):
File "gtalk_export.py", line 144, in
Try editing hangouts.py line 218 and changing this:
messages.sort(cmp=lambda a,b: int(a['timestamp']) - int(b['timestamp']))
to this:
messages.sort(cmp=lambda a,b: int(int(a['timestamp']) - int(b['timestamp'])))