summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormathieui@4325f9fc-e183-4c21-96ce-0ab188b42d13 <mathieui@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-10-11 23:20:31 +0000
committermathieui@4325f9fc-e183-4c21-96ce-0ab188b42d13 <mathieui@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-10-11 23:20:31 +0000
commit1c32d1f8477b0e3b6f788feea66a5a858f2068a1 (patch)
tree739cb9741fe7eaf9a49a3d3ba2b1d77fd2b435bb /src
parent63bc5a2a2fb8e62f8a0c388683f85f49e921056b (diff)
downloadpoezio-1c32d1f8477b0e3b6f788feea66a5a858f2068a1.tar.gz
poezio-1c32d1f8477b0e3b6f788feea66a5a858f2068a1.tar.bz2
poezio-1c32d1f8477b0e3b6f788feea66a5a858f2068a1.tar.xz
poezio-1c32d1f8477b0e3b6f788feea66a5a858f2068a1.zip
              …
Diffstat (limited to 'src')
-rw-r--r--src/room.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/room.py b/src/room.py
index a0d8d832..8a755e18 100644
--- a/src/room.py
+++ b/src/room.py
@@ -97,7 +97,7 @@ class Room(TextBuffer):
in the room anymore
"""
self.log_message(txt, time, nickname)
- if txt.startswith('/me'):
+ if txt.startswith('/me '):
txt = "* " + nickname + ' ' + txt[4:]
nickname = None
user = self.get_user_by_name(nickname) if nickname is not None else None