summaryrefslogtreecommitdiff
path: root/tools/news.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/news.py')
-rwxr-xr-xtools/news.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/news.py b/tools/news.py
index 53350ace..43917140 100755
--- a/tools/news.py
+++ b/tools/news.py
@@ -55,7 +55,7 @@ class HtmlWriter(BasicWriter):
pass
def put(self, entry):
- self.stream.write('<div>\n')
+ self.stream.write('<div>\n<p/>\n')
entry = entry.replace('\n\n', '\n<p/>\n')
entry = entry.format(**colors.make_html_colors_dict())
self.stream.write(entry)
@@ -73,7 +73,7 @@ class TxtWriter(BasicWriter):
entry = entry.replace('\n\n', '\n \n')
entry = entry.format(**colors.make_txt_colors_dict())
self.stream.write(entry)
- self.stream.write('\n\n')
+ self.stream.write(' \n \n')
def finish(self):
# DO NOT REMOVE
#self.stream.write('Did you really read down this far?\n')