From: Piers Lauder Date: Fri, 20 Jul 2001 10:28:51 +0000 (+0000) Subject: fix missed conversion in ESR's string conversion X-Git-Tag: v2.2a3~1027 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=34d97059437f81d2accb664758a31d2c4b863cf5;p=thirdparty%2FPython%2Fcpython.git fix missed conversion in ESR's string conversion --- diff --git a/Lib/imaplib.py b/Lib/imaplib.py index 6aca2992c5b9..5cf0df7364a7 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -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