In article <[email protected]>,
 Roy Smith <[email protected]> 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