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

Eric S. Raymond esr@users.sourceforge.net
Fri, 09 Feb 2001 02:28:36 -0800


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

Modified Files:
	mhlib.py 
Log Message:
Test with an actual mbox caught a trivial error.


Index: mhlib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/mhlib.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -r1.24 -r1.25
*** mhlib.py	2001/02/09 09:17:38	1.24
--- mhlib.py	2001/02/09 10:28:34	1.25
***************
*** 691,695 ****
                      hit = pred(line[:i].lower())
              if hit: headers.append(line)
!         return ''.joinfields(headers)
  
      def getbodytext(self, decode = 1):
--- 691,695 ----
                      hit = pred(line[:i].lower())
              if hit: headers.append(line)
!         return ''.join(headers)
  
      def getbodytext(self, decode = 1):