[Mailman-Developers] [Mailman-Users] any info onthisreportedexploit?

Mark Sapiro msapiro at value.net
Wed Feb 1 04:26:11 CET 2006


>Mark Sapiro wrote:
>
>>++   if not t[7]:
>>++       t = t[:7] + (1,) +t[8:]
>
>On second thought, that should be
>
>    if t and not t[7]
>        t = t[:7] + (1,) +t[8:]

I seem to be having a lot of trouble with this. Make that

    if t and not t[7]:
        t = t[:7] + (1,) +t[8:]


-- 
Mark Sapiro <msapiro at value.net>       The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan



More information about the Mailman-Developers mailing list