summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@esme>2005-12-22 01:56:09 +0200
committerLars Wirzenius <liw@esme>2005-12-22 01:56:09 +0200
commit717cf8ecbbc6b79c7a7c8e5819382ddd99feefb8 (patch)
tree6ac2093549b7cbe309cb91d317097b5f5e76d6e2
parent785588d7b049554df7e591409a938c125ab5f609 (diff)
downloadeoc-717cf8ecbbc6b79c7a7c8e5819382ddd99feefb8.tar.gz
Oops. Forgot to test one change, and it has a wrong method call. Argh.
-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", {})