[Mailman-Developers] Uncaught runner exception: 'generator' object has no attribute 'insert'

Barry A. Warsaw barry@zope.com
Tue, 27 Nov 2001 02:38:21 -0500


>>>>> "PC" == Pavel Chytil <pchytil@asp.ogi.edu> writes:

    |     lines = email.Iterators.body_line_iterator(msg)[:]

Sorry, change this line to

          lines = list(email.Iterators.body_line_iterator(msg))

(You probably need to back out the previous patch first, before
applying the second one I sent.)

-Barry