From: Thomas Wouters Date: Fri, 20 Jul 2001 10:54:21 +0000 (+0000) Subject: Backport Piers Lauder's checkin 1.30: X-Git-Tag: v2.1.1~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8dd6901ed270d2d61eee22afcde1c52fec565d3;p=thirdparty%2FPython%2Fcpython.git Backport Piers Lauder's checkin 1.30: fix missed conversion in ESR's string conversion This should be the *last* checkin in this branch, barring brown-bags, showstoppers and release cruft. --- diff --git a/Lib/imaplib.py b/Lib/imaplib.py index 2a0eeb6ff464..26faa9eba10d 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -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