diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-06-07 10:18:46 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-06-07 10:18:46 -0400 |
commit | 32a9da31438d51bfd49b3acbf0691c35feb4a974 (patch) | |
tree | cf468e2c43982a9dd1093335f3ec546801fa7501 /contrib/plaintext.py | |
parent | a974027efe9efcad9b334175163aa608a4d5bb31 (diff) | |
download | aerc-32a9da31438d51bfd49b3acbf0691c35feb4a974.tar.gz |
Ignore encoding errors in filters
Fixes #161
Diffstat (limited to 'contrib/plaintext.py')
-rwxr-xr-x | contrib/plaintext.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/plaintext.py b/contrib/plaintext.py index 3a326791..522055bf 100755 --- a/contrib/plaintext.py +++ b/contrib/plaintext.py @@ -11,6 +11,7 @@ ansi_escape = re.compile(r'\x1B\[[0-?]*[ -/]*[@-~]') quote_prefix_re = re.compile(r"On .*, .* wrote:") quote_re = re.compile(r">+") +sys.stdin.reconfigure(encoding='utf-8', errors='ignore') mail = sys.stdin.read().replace("\r\n", "\n") mail = ansi_escape.sub('', mail) |