]> granicus.if.org Git - python/commitdiff
fix missed conversion in ESR's string conversion
authorPiers Lauder <piers@cs.su.oz.au>
Fri, 20 Jul 2001 10:28:51 +0000 (10:28 +0000)
committerPiers Lauder <piers@cs.su.oz.au>
Fri, 20 Jul 2001 10:28:51 +0000 (10:28 +0000)
Lib/imaplib.py

index 6aca2992c5b9e18debc434666c1705e385157520..5cf0df7364a7056fa8198c220659240e126ac376 100644 (file)
@@ -1023,7 +1023,7 @@ if __debug__:
         if not l: return
         t = '\n\t\t'
         l = map(lambda x:'%s: "%s"' % (x[0], x[1][0] and '" "'.join(x[1]) or ''), l)
-        _mesg('untagged responses dump:%s%s' % (t, j(l, t)))
+        _mesg('untagged responses dump:%s%s' % (t, t.join(l)))
 
     _cmd_log = []           # Last `_cmd_log_len' interactions
     _cmd_log_len = 10