From 63bc5a2a2fb8e62f8a0c388683f85f49e921056b Mon Sep 17 00:00:00 2001 From: "mathieui@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Mon, 11 Oct 2010 23:09:16 +0000 Subject: remove the old /me verif because it's not useful anymore --- src/gui.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/gui.py b/src/gui.py index cc0fcb1b..bcf974c7 100644 --- a/src/gui.py +++ b/src/gui.py @@ -776,11 +776,8 @@ class Gui(object): self.add_message_to_text_buffer(room, _("The subject is: %(subject)s") % {'subject':subject}, time=date) room.topic = subject.replace('\n', '|') elif body: - if body.startswith('/me '): - self.add_message_to_text_buffer(room, "* "+nick_from + ' ' + body[4:], date) - else: - date = date if delayed == True else None - self.add_message_to_text_buffer(room, body, date, nick_from) + date = date if delayed == True else None + self.add_message_to_text_buffer(room, body, date, nick_from) self.refresh_window() doupdate() -- cgit v1.2.3