From: Christian Heller <c.heller@plomlompom.de>
Date: Sat, 23 Apr 2016 21:47:14 +0000 (+0200)
Subject: Fix logging bug.
X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/static/do_todos?a=commitdiff_plain;h=406dc83c2b15e8ca0a58b244dc7eaeee42d2bbb4;p=plomlombot-irc.git

Fix logging bug.
---

diff --git a/plomlombot.py b/plomlombot.py
index 0012baf..35d3c2f 100755
--- a/plomlombot.py
+++ b/plomlombot.py
@@ -74,8 +74,8 @@ class Log:
         identity = ""
         separator = " > "
         if sent:
-            separator = " < "
-            line = Line(line)
+            separator = " "
+            line = Line("< " + line)
             line.sender = self.nickname
             identity = self.username + "@localhost"
         else: