Oops. Forgot to test one change, and it has a wrong method call. Argh.
[eoc.git] / eoc.py
diff --git a/eoc.py b/eoc.py
index 8a2597810099faf9acb361c721bd8446abc8f435..5c72e790a7cdb8fc64ca52ff361fc1391dd420fa 100644 (file)
--- 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", {})