Skip to content

Commit 1b657fb

Browse files
committed
When instantiating a Text instance from a file, set errors='replace' on open(), to handle encoding weirdness.
1 parent c003899 commit 1b657fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

textplot/text.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def from_file(cls, path):
2626
:param path: The file path.
2727
"""
2828

29-
return cls(open(path, 'r').read())
29+
return cls(open(path, 'r', errors='replace').read())
3030

3131

3232
def __init__(self, text):

0 commit comments

Comments
 (0)