diff options
author | Guido van Rossum <guido@python.org> | 1999-01-25 21:57:29 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-01-25 21:57:29 (GMT) |
commit | 3e0d3191961734067465ffa1b1d671d245c98813 (patch) | |
tree | 2c667db06082526b179e06f5aa8a65309e753847 /Lib/dos-8x3/formatte.py | |
parent | dfd8954e36b997c2f6adfa34df77bab92db6381d (diff) | |
download | cpython-3e0d3191961734067465ffa1b1d671d245c98813.zip cpython-3e0d3191961734067465ffa1b1d671d245c98813.tar.gz cpython-3e0d3191961734067465ffa1b1d671d245c98813.tar.bz2 |
The usual.
Diffstat (limited to 'Lib/dos-8x3/formatte.py')
-rwxr-xr-x | Lib/dos-8x3/formatte.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dos-8x3/formatte.py b/Lib/dos-8x3/formatte.py index a3e82a4..4b340d5 100755 --- a/Lib/dos-8x3/formatte.py +++ b/Lib/dos-8x3/formatte.py @@ -331,7 +331,7 @@ class DumbWriter(NullWriter): self.atbreak = 0 def send_paragraph(self, blankline): - self.file.write('\n' + '\n'*blankline) + self.file.write('\n'*blankline) self.col = 0 self.atbreak = 0 |