From: Barry Warsaw Date: Tue, 10 Sep 2002 15:57:29 +0000 (+0000) Subject: _ascii_split(): Don't lstrip continuation lines. Closes SF bug #601392. X-Git-Tag: v2.3c1~4154 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45d9bde6c1053cde2a73043785778e5e0262103d;p=python _ascii_split(): Don't lstrip continuation lines. Closes SF bug #601392. --- diff --git a/Lib/email/Header.py b/Lib/email/Header.py index 2457279013..70e0bac862 100644 --- a/Lib/email/Header.py +++ b/Lib/email/Header.py @@ -250,7 +250,7 @@ class Header: maxlinelen = self._firstlinelen firstline = 0 else: - line = line.lstrip() + #line = line.lstrip() maxlinelen = self._maxlinelen # Short lines can remain unchanged if len(line.replace('\t', SPACE8)) <= maxlinelen: