From 717cf8ecbbc6b79c7a7c8e5819382ddd99feefb8 Mon Sep 17 00:00:00 2001
From: Lars Wirzenius <liw@esme>
Date: Thu, 22 Dec 2005 01:56:09 +0200
Subject: [PATCH 1/1] Oops. Forgot to test one change, and it has a wrong
 method call. Argh.

---
 eoc.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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", {})
-- 
2.39.5