]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Backport Piers Lauder's checkin 1.30:
authorThomas Wouters <thomas@python.org>
Fri, 20 Jul 2001 10:54:21 +0000 (10:54 +0000)
committerThomas Wouters <thomas@python.org>
Fri, 20 Jul 2001 10:54:21 +0000 (10:54 +0000)
fix missed conversion in ESR's string conversion

This should be the *last* checkin in this branch, barring brown-bags,
showstoppers and release cruft.

Lib/imaplib.py

index 2a0eeb6ff46448050633bc942e91ae622b9f1819..26faa9eba10da294a4110f3fbf8d5658c0ad4ecb 100644 (file)
@@ -1016,7 +1016,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