mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
fix missed conversion in ESR's string conversion
This commit is contained in:
parent
7e5dcf6a33
commit
34d9705943
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue