You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UnicodeDecodeError: 'utf-8' codec can't decode byte 0x92 in position 2717: invalid start byte
options would be to use errors='backslashreplace' in the open() calls in klonpatiencediff.py, or else doing the whole diff algorithm in binary and leaving the errors in. errors='surrogateescape' doesn't work because the surrogates are not allowed by python to be converted back.
The text was updated successfully, but these errors were encountered:
UnicodeDecodeError is raised:
options would be to use
errors='backslashreplace'
in theopen()
calls inklonpatiencediff.py
, or else doing the whole diff algorithm in binary and leaving the errors in.errors='surrogateescape'
doesn't work because the surrogates are not allowed by python to be converted back.The text was updated successfully, but these errors were encountered: