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
Dealing with bad encoded source file will result in:
Traceback (most recent call last):
File "<string>", line 538, in render
File "<string>", line 1178, in lines
File "/usr/lib/python3.9/codecs.py", line 322, in decode
(result, consumed) = self._buffer_decode(data, self.errors, final)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xa9 in position 1050: invalid start byte
This patch will try to address this issue according to:
https://docs.python.org/3/library/codecs.html#error-handlers
0 commit comments