[Python-checkins] CVS: python/dist/src/Lib imaplib.py,1.29,1.30

Piers Lauder pierslauder@users.sourceforge.net
Fri, 20 Jul 2001 03:28:53 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv29301/dist/src/Lib

Modified Files:
	imaplib.py 
Log Message:
fix missed conversion in ESR's string conversion

Index: imaplib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/imaplib.py,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -r1.29 -r1.30
*** imaplib.py	2001/06/18 23:56:36	1.29
--- imaplib.py	2001/07/20 10:28:51	1.30
***************
*** 1024,1028 ****
          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)))
  
      _cmd_log = []           # Last `_cmd_log_len' interactions
--- 1024,1028 ----
          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, t.join(l)))
  
      _cmd_log = []           # Last `_cmd_log_len' interactions