From: Lars Wirzenius Date: Wed, 21 Dec 2005 23:56:09 +0000 (+0200) Subject: Oops. Forgot to test one change, and it has a wrong method call. Argh. X-Git-Url: https://git.sommitrealweird.co.uk/eoc.git/commitdiff_plain/717cf8ecbbc6b79c7a7c8e5819382ddd99feefb8 Oops. Forgot to test one change, and it has a wrong method call. Argh. --- diff --git a/eoc.py b/eoc.py index 8a25978..5c72e79 100644 --- a/eoc.py +++ b/eoc.py @@ -874,7 +874,7 @@ class MailingList: if "base64" in text or "BASE64" in text: import StringIO for line in StringIO.StringIO(text): - if line.lower.beginswith("content-transfer-encoding:") and \ + if line.lower.startswith("content-transfer-encoding:") and \ "base64" in line.lower(): return text return text + self.template("footer", {})