[Mailman-Users] Daily cron error in 2.0b2

Dan Mick Dan.Mick at West.Sun.COM
Sat Jun 24 05:39:25 CEST 2000


>   File "/home/mailman/cron/checkdbs", line 72, in pending_requests
>     pending.append('    %s %s' % addr, time.ctime(when))
> TypeError: not enough arguments for format string

Yup, already much-discussed.  Fixed in current CVS (about to be
beta3).  The two arguments need to be explicitly tuple-ized
with parens:

        pending.append('    %s %s' % (addr, time.ctime(when)))

A casual perusal of the archives should have found this.





More information about the Mailman-Users mailing list