summaryrefslogtreecommitdiff
path: root/src/room.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/room.py')
-rw-r--r--src/room.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/room.py b/src/room.py
index 674e2d65..be376b54 100644
--- a/src/room.py
+++ b/src/room.py
@@ -119,7 +119,7 @@ class Room(TextBuffer):
if highlight:
nick_color = highlight
time = time or datetime.now()
- message = Message(txt='%s\x19o'%(txt,), nick_color=nick_color,
+ message = Message(txt='%s\x19o'%(txt.replace('\t', ' '),), nick_color=nick_color,
time=time, str_time=time.strftime("%Y-%m-%d %H:%M:%S")\
if history else time.strftime("%H:%M:%S"),\
nickname=nickname, user=user)