On Mar 19, 2005, at 07:27, Heather Madrone wrote:

I'm running Mailman 2.1.5 on Mac OSX 10.2.8 using Python 2.4 and exim
[...]
File "/Applications/mailman/Mailman/Bouncer.py", line 131, in registerBounce
time.strftime('%d-%b-%Y', day + (0,)*6))
ValueError: day of year out of range

This error occurs because Python 2.4's strftime() checks its arguments more strictly than earlier versions.


Three options are:
  1) switch to the 2.1.6beta versions, where this has already been fixed
  2) change line 131 of Bouncer.py to be:
                   time.strftime('%d-%b-%Y', day + (0,0,0,0,1,0)))
  3) use Python 2.3

--
Jim Tittsler             http://www.OnJapan.net/      GPG: 0x01159DB6
Python Starship          http://Starship.Python.net/
Ringo MUG Tokyo          http://www.ringo.net/rss.html

------------------------------------------------------
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp

Reply via email to