summaryrefslogtreecommitdiff
path: root/eoc.py
diff options
context:
space:
mode:
Diffstat (limited to 'eoc.py')
-rw-r--r--eoc.py2
1 files changed, 1 insertions, 1 deletions
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", {})