We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c003899 commit 1b657fbCopy full SHA for 1b657fb
textplot/text.py
@@ -26,7 +26,7 @@ def from_file(cls, path):
26
:param path: The file path.
27
"""
28
29
- return cls(open(path, 'r').read())
+ return cls(open(path, 'r', errors='replace').read())
30
31
32
def __init__(self, text):
0 commit comments