diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2013-02-02 21:41:34 -0800 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-02-02 21:41:34 -0800 |
commit | 370f42c1449395ad573bd418ab8c60ce734da88d (patch) | |
tree | 3d67707a990583b6e72ecc136d054323d25c2cac | |
parent | c27e28b73a823ebe3b94fdfe1aa97589006a2c6f (diff) | |
download | tools-370f42c1449395ad573bd418ab8c60ce734da88d.tar.gz tools-370f42c1449395ad573bd418ab8c60ce734da88d.tar.bz2 tools-370f42c1449395ad573bd418ab8c60ce734da88d.tar.xz tools-370f42c1449395ad573bd418ab8c60ce734da88d.zip |
Work around the empty line bug again
-rwxr-xr-x | news.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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') |