diff options
-rw-r--r-- | rcon.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -37,6 +37,10 @@ class JournalViewer: def write(self, text, color_override=None): for line in str(text).split("\n"): + # FIXME: where are these empty lines coming from? + if line == "": + continue + if color_override is None: markup = trem_to_markup(line) else: |