Skip to content

Commit 76c3105

Browse files
committed
Fix for Python 2.7 unicode_errors
1 parent 9ebc01e commit 76c3105

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pynvim/compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def find_module(fullname, path):
3434
unicode_errors_default = 'surrogateescape'
3535
else:
3636
find_module = original_find_module
37-
unicode_errors_default = 'strict'
37+
unicode_errors_default = 'ignore'
3838

3939
NUM_TYPES = (int, long, float)
4040

0 commit comments

Comments
 (0)