summaryrefslogtreecommitdiffstats
path: root/Lib/imaplib.py
diff options
context:
space:
mode:
authorPiers Lauder <piers@cs.su.oz.au>2001-07-20 10:28:51 (GMT)
committerPiers Lauder <piers@cs.su.oz.au>2001-07-20 10:28:51 (GMT)
commit34d97059437f81d2accb664758a31d2c4b863cf5 (patch)
tree9e054793d1a0a38c016b050a39ae29035a1b9411 /Lib/imaplib.py
parent7e5dcf6a334c31c46a74ebb4f6d709efbec48d39 (diff)
downloadcpython-34d97059437f81d2accb664758a31d2c4b863cf5.zip
cpython-34d97059437f81d2accb664758a31d2c4b863cf5.tar.gz
cpython-34d97059437f81d2accb664758a31d2c4b863cf5.tar.bz2
fix missed conversion in ESR's string conversion
Diffstat (limited to 'Lib/imaplib.py')
-rw-r--r--Lib/imaplib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/imaplib.py b/Lib/imaplib.py
index 6aca299..5cf0df7 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