diff --git a/Lib/formatter.py b/Lib/formatter.py index a3e82a440a7..4b340d52ba3 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