[Python-checkins] CVS: python/dist/src/Lib mailbox.py,1.24,1.25

Fred L. Drake python-dev@python.org
Sat, 30 Sep 2000 16:59:07 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv26396/Lib

Modified Files:
	mailbox.py 
Log Message:

Add missing "s" from format string.
This closes SourceForge patch #101714.


Index: mailbox.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/mailbox.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -r1.24 -r1.25
*** mailbox.py	2000/09/22 18:41:50	1.24
--- mailbox.py	2000/09/30 23:59:04	1.25
***************
*** 273,277 ****
              s = msg.getheader('subject') or ""
              d = msg.getheader('date') or ""
!             print '-%20.20s   %20.20   %-30.30s'%(f, d[5:], s)
  
  
--- 273,277 ----
              s = msg.getheader('subject') or ""
              d = msg.getheader('date') or ""
!             print '-%20.20s   %20.20s   %-30.30s'%(f, d[5:], s)