From 08b1764afc5f33ed52d9b2180c783c0ea193cc7b Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Mon, 2 May 2016 10:08:32 +0100 Subject: [PATCH] parsemail: Fix typo Signed-off-by: Eric Engestrom Reviewed-by: Stephen Finucane --- patchwork/bin/parsemail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patchwork/bin/parsemail.py b/patchwork/bin/parsemail.py index 78a466e4..8648d29c 100755 --- a/patchwork/bin/parsemail.py +++ b/patchwork/bin/parsemail.py @@ -380,7 +380,7 @@ def clean_subject(subject, drop_prefixes=None): def clean_content(content): """Remove cruft from the email message. - Catch ignature (-- ) and list footer (_____) cruft. + Catch signature (-- ) and list footer (_____) cruft. """ sig_re = re.compile(r'^(-- |_+)\n.*', re.S | re.M) content = sig_re.sub('', content) -- 2.47.3