diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-03-31 14:43:46 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-03-31 14:43:46 -0400 |
commit | 958328427ab8cbbb064e11f2e7f2f68d3563a6cb (patch) | |
tree | ed8699aaa08d334488826dad89840e2720798b40 /contrib/plaintext.py | |
parent | 8e5ed2a161bf654888a8b48af2d9fdf6fbc0c7e0 (diff) | |
download | aerc-958328427ab8cbbb064e11f2e7f2f68d3563a6cb.tar.gz |
Improve plaintext.py
Diffstat (limited to 'contrib/plaintext.py')
-rwxr-xr-x | contrib/plaintext.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/plaintext.py b/contrib/plaintext.py index 3502aff..3a32679 100755 --- a/contrib/plaintext.py +++ b/contrib/plaintext.py @@ -8,8 +8,8 @@ import re ansi_escape = re.compile(r'\x1B\[[0-?]*[ -/]*[@-~]') # TODO: I guess this might vary from MUA to MUA. I've definitely seen localized # versions in the wild -quote_prefix_re = re.compile(r"On [0-9: -]+( (AM|PM))?, .* wrote:") -quote_re = re.compile(r">+ ") +quote_prefix_re = re.compile(r"On .*, .* wrote:") +quote_re = re.compile(r">+") mail = sys.stdin.read().replace("\r\n", "\n") mail = ansi_escape.sub('', mail) |