From f4bb656a4ff1b06c0af4e340edd60159a3d4522a Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 12 Jan 1999 18:13:27 +0000 Subject: DumbWriter.send_paragraph(): Fix problem with DumbWriter reported to the newsgroup by Raymond Tong Leng Ng . --- Lib/formatter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/formatter.py') diff --git a/Lib/formatter.py b/Lib/formatter.py index a3e82a440a..4b340d52ba 100644 --- a/Lib/formatter.py +++ b/Lib/formatter.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 -- cgit v1.2.1