Mark Sapiro wrote:
>>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:]
> 
> 
I changed the patch including this one.  Please check it again.
https://sourceforge.net/tracker/index.php?func=detail&aid=1419490&group_id=103&atid=300103


-- 
Tokio Kikuchi, tkikuchi@ is.kochi-u.ac.jp
http://weather.is.kochi-u.ac.jp/
_______________________________________________
Mailman-Developers mailing list
Mailman-Developers@python.org
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-users%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

Reply via email to