On Tue, 2006-04-18 at 19:24 -0700, [EMAIL PROTECTED] wrote: > Fix a couple of typos/oversights in Barry's type and logging changes. > > Modified Paths: > -------------- > trunk/mailman/Mailman/Cgi/admin.py > trunk/mailman/Mailman/Cgi/admindb.py > Modified: trunk/mailman/Mailman/Cgi/admin.py > =================================================================== > --- trunk/mailman/Mailman/Cgi/admin.py 2006-04-17 21:52:04 UTC (rev > 7861) > +++ trunk/mailman/Mailman/Cgi/admin.py 2006-04-19 02:24:19 UTC (rev > 7862) > @@ -552,7 +552,7 @@ > width='85%') > > for item in options: > - if isinstance(type, str): > + if isinstance(item, str): > # The very first banner option (string in an options list) is > # treated as a general description, while any others are > # treated as section headers - centered and italicized...
LOL! I hit this one in my development tree and didn't get to checking it in yet. (Yes, I'm experimenting with "things" :). > Modified: trunk/mailman/Mailman/Cgi/admindb.py > =================================================================== > --- trunk/mailman/Mailman/Cgi/admindb.py 2006-04-17 21:52:04 UTC (rev > 7861) > +++ trunk/mailman/Mailman/Cgi/admindb.py 2006-04-19 02:24:19 UTC (rev > 7862) > @@ -24,6 +24,7 @@ > import email > import errno > import signal > +import logging > > from urllib import quote_plus, unquote_plus Good catch, thanks! -Barry
signature.asc
Description: This is a digitally signed message part
_______________________________________________ Mailman-Developers mailing list [email protected] http://mail.python.org/mailman/listinfo/mailman-developers Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py Searchable Archives: http://www.mail-archive.com/mailman-developers%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-developers/archive%40jab.org Security Policy: http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp
