New version.
[eoc.git] / eoc.py
diff --git a/eoc.py b/eoc.py
index 8a2597810099faf9acb361c721bd8446abc8f435..537bccd9be2e9b95ca683513a46247c246e80540 100644 (file)
--- a/eoc.py
+++ b/eoc.py
@@ -4,7 +4,7 @@ This is a simple mailing list manager that mimicks the ezmlm-idx mail
 address commands. See manual page for more information.
 """
 
-VERSION = "1.2"
+VERSION = "1.2.1"
 PLUGIN_INTERFACE_VERSION = "1"
 
 import getopt
@@ -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", {})