Print error with the right function.
authorLars Wirzenius <liw@iki.fi>
Wed, 3 Jan 2007 20:53:22 +0000 (22:53 +0200)
committerLars Wirzenius <liw@iki.fi>
Wed, 3 Jan 2007 20:53:22 +0000 (22:53 +0200)
NEWS
eoc.py

diff --git a/NEWS b/NEWS
index f53e25901037f5dfa61afed6d5701ec87fcc38c8..4e5663f06bdc8af95d63e382b741f6fa1335016b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,10 @@
 NEWS file for Enemies of Carlotta, a mailing list manager
 
 NEWS file for Enemies of Carlotta, a mailing list manager
 
+Significant user-visible changes from version 1.2.4 to version 1.2.5:
+
+    * The change in 1.2.3 used the wrong log printing function, this
+      release uses the right one.
+
 Significant user-visible changes from version 1.2.3 to version 1.2.4:
 
     * A fix to CVE-2006-5875, a security problem where EoC did not quote
 Significant user-visible changes from version 1.2.3 to version 1.2.4:
 
     * A fix to CVE-2006-5875, a security problem where EoC did not quote
diff --git a/eoc.py b/eoc.py
index dadeb46b800ec948b1b285efc07f703e43971420..bf106630cf4e5fd6980ec12bc7ec9fa636a2e110 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.
 """
 
 address commands. See manual page for more information.
 """
 
-VERSION = "1.2.4"
+VERSION = "1.2.5"
 PLUGIN_INTERFACE_VERSION = "1"
 
 import getopt
 PLUGIN_INTERFACE_VERSION = "1"
 
 import getopt
@@ -551,7 +551,7 @@ class MailingList:
         
             return "\n".join(headers) + "\n\n" + body
         except:
         
             return "\n".join(headers) + "\n\n" + body
         except:
-            warning("Cannot MIME encode header, using original ones, sorry")
+            info("Cannot MIME encode header, using original ones, sorry")
             return text
 
     def template(self, template_name, dict):
             return text
 
     def template(self, template_name, dict):