On Aug 21, 2005, at 2:05 PM, Mark Sapiro wrote: > I'm grasping at straws here, but you might try changing > > for listname in Utils.list_names(): > > in process_lists in gate_news to something like > > names = Utils.list_names() > for listname in names: > > and maybe adding some more debug logging.
Thanks, Mark. I replaced the line per your suggestion, adding a write to syslog between reading the names and entering the for loop. The output of the syslog of names listed all our lists; the for loop did not, but did process in order to one list. The list was an old one, so as soon as I deleted it, I was able to process through all the lists! I have no idea why gate_news was hanging on that list, but list_names was not. Mystery of mysteries! -- Martin ------------------------------------------------------ Mailman-Users mailing list [EMAIL PROTECTED] 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