This repository was archived by the owner on Apr 25, 2024. It is now read-only.
This repository was archived by the owner on Apr 25, 2024. It is now read-only.
gnsync: UnicodeDecodeError: 'ascii' codec can't decode byte #109
Closed
Description
Trying to just download my existing notes via gnsync
, I noticed a lot of my notes weren't getting downloaded, but were being silently skipped.
There's no warning or indication of failure:
# gnsync --path /backups --format markdown --notebook Default --download-only
#
But error.log shows more details:
2018-12-01 03:41:13,401 gnsync __init__ 146 : Sync Start
2018-12-01 03:41:15,082 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc3 in position 808: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 808: ordinal not in range(128)
2018-12-01 03:41:16,273 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc3 in position 414: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 414: ordinal not in range(128)
2018-12-01 03:41:16,899 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc3 in position 134: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 134: ordinal not in range(128)
2018-12-01 03:41:17,488 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc3 in position 226: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 226: ordinal not in range(128)
2018-12-01 03:41:18,068 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc3 in position 915: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 915: ordinal not in range(128)
2018-12-01 03:41:18,874 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc2 in position 377: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 377: ordinal not in range(128)
2018-12-01 03:41:19,691 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc3 in position 464: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 464: ordinal not in range(128)
2018-12-01 03:41:20,865 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc3 in position 188: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 188: ordinal not in range(128)
2018-12-01 03:41:21,455 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc3 in position 167: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 167: ordinal not in range(128)
2018-12-01 03:41:22,051 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc2 in position 443: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 443: ordinal not in range(128)
2018-12-01 03:41:22,926 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc3 in position 165: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 165: ordinal not in range(128)
2018-12-01 03:41:24,729 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc3 in position 140: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 140: ordinal not in range(128)
2018-12-01 03:41:25,305 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc3 in position 148: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 148: ordinal not in range(128)
2018-12-01 03:41:25,891 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc2 in position 190: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 190: ordinal not in range(128)
2018-12-01 03:41:26,489 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc3 in position 151: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 151: ordinal not in range(128)
2018-12-01 03:41:27,679 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc2 in position 218: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 218: ordinal not in range(128)
2018-12-01 03:41:30,056 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc3 in position 2207: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 2207: ordinal not in range(128)
2018-12-01 03:41:33,674 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc3 in position 206: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 206: ordinal not in range(128)
2018-12-01 03:41:35,406 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc3 in position 168: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 168: ordinal not in range(128)
2018-12-01 03:41:36,573 gnsync wrapper 55 : 'ascii' codec can't decode byte 0xc3 in position 192: ordinal not in range(128)
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 53, in wrapper
return func(*args, **kwargs)
File "/usr/local/lib/python2.7/site-packages/geeknote/gnsync.py", line 383, in _create_file
content = Editor.ENMLtoText(note.content.encode('utf-8'), self.imageOptions)
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 192: ordinal not in range(128)
2018-12-01 03:41:37,153 gnsync sync 224 : Sync Complete