]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
parsemail: Fix typo
authorEric Engestrom <eric@engestrom.ch>
Mon, 2 May 2016 09:08:32 +0000 (10:08 +0100)
committerStephen Finucane <stephen.finucane@intel.com>
Mon, 9 May 2016 12:43:36 +0000 (13:43 +0100)
Signed-off-by: Eric Engestrom <eric@engestrom.ch>
Reviewed-by: Stephen Finucane <stephen.finucane@intel.com>
patchwork/bin/parsemail.py

index 78a466e44a26bd0faac7b31a0f5982ec20aeab5a..8648d29c909790938302a272a7a233013dcc5315 100755 (executable)
@@ -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)