_ascii_split(): Don't lstrip continuation lines. Closes SF bug #601392.

This commit is contained in:
Barry Warsaw 2002-09-10 15:57:29 +00:00
parent 24d45df3f2
commit 45d9bde6c1
1 changed files with 1 additions and 1 deletions

View File

@ -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: