DumbWriter.send_paragraph():  Fix problem with DumbWriter reported to
	the newsgroup by Raymond Tong Leng Ng <rntl@yahoo.com>.
diff --git a/Lib/formatter.py b/Lib/formatter.py
index a3e82a4..4b340d5 100644
--- a/Lib/formatter.py
+++ b/Lib/formatter.py
@@ -331,7 +331,7 @@
         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