summaryrefslogtreecommitdiff
path: root/Lib/formatter.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/formatter.py')
-rw-r--r--Lib/formatter.py2
1 files changed, 1 insertions, 1 deletions
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