Fw: Re: [Mailman-Users] Problem to create list 2.1a2

Greg Ward gward at mems-exchange.org
Fri Aug 10 21:07:28 CEST 2001


On 10 August 2001, Rodolfo Pilas said:
> guru /home/rodolfo> python -V
> Python 2.0
[...]
> Mailman 2.1a2 (because I wish the Spanish translation!)

OK, good: time.ctime() changed in Python 2.1 (I just checked the Python
CVS).  So if Mailman 2.1 is supposed to work on Python 2.0,
congratulations: you have found a bug in MTA/Postfix.py.  The fix is
easy:

--- Mailman/MTA/Postfix.py.orig Tue Jul 10 08:16:53 2001
+++ Mailman/MTA/Postfix.py      Fri Aug 10 15:06:06 2001
@@ -90,3 +90,3 @@
     print >> fp, '# STANZA START:', listname
-    print >> fp, '# CREATED:', time.ctime()
+    print >> fp, '# CREATED:', time.ctime(time.time())
     # Now add all the standard alias entries

(Barry, are you listening?  ;-)

If Mailman 2.1 does *not* support Python 2.0, you'll have to upgrade
to Python 2.1.

        Greg
-- 
Greg Ward - software developer                gward at mems-exchange.org
MEMS Exchange                            http://www.mems-exchange.org




More information about the Mailman-Users mailing list