In article <roy-4a275d.13503227122...@news.panix.com>,
 Roy Smith <r...@panix.com> wrote:

> self.logfile.write("str=%s, repr=%s", (str(t), repr(t)))

Ugh, make that:

> self.logfile.write("str=%s, repr=%s" % ((str(t), repr(t)))
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to