From: Eric S. Raymond Date: Fri, 9 Feb 2001 10:28:34 +0000 (+0000) Subject: Test with an actual mbox caught a trivial error. X-Git-Tag: v2.1b1~456 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c9838f9fcbf138b454606d606f7b53a5be21b5ae;p=thirdparty%2FPython%2Fcpython.git Test with an actual mbox caught a trivial error. --- diff --git a/Lib/mhlib.py b/Lib/mhlib.py index 7dbe8755573f..aab560bb6e33 100644 --- a/Lib/mhlib.py +++ b/Lib/mhlib.py @@ -690,7 +690,7 @@ class Message(mimetools.Message): if i > 0: hit = pred(line[:i].lower()) if hit: headers.append(line) - return ''.joinfields(headers) + return ''.join(headers) def getbodytext(self, decode = 1): """Return the message's body text as string. This undoes a