[Mailman-Developers] admindb.py bug and patch again...

Ron Jarrell jarrell@vtserf.cc.vt.edu
Mon, 26 Jun 2000 17:36:33 -0400


I sent this in earlier today, from my main account, but never saw
it on the list... Nor, interestingly, is the list willing to send
me my password (although it claims to); at least I haven't
gotten it after waiting a while.  I'm getting other people's messages
from the list, so I'm sending this again from an alternate account,
as a test to see if python.org is unhappy with my main one..

Anyway, there's a bug in admindb.py that crops up when you try to
feed it an illegal address.  syslog is missing an arg.  Here's
the simple patch:

Index: admindb.py
===================================================================
RCS file: /cvsroot/mailman/mailman/Mailman/Cgi/admindb.py,v
retrieving revision 1.28
diff -r1.28 admindb.py
69c69
<         syslog('No such list "%s": %s\n' % (listname, e))
---
>         syslog('error','No such list "%s": %s\n' % (listname, e))