From f634209067e535c0780f8e949deff936ce27c58b Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Sun, 12 Jun 2005 22:20:42 +0000 Subject: [PATCH] remove 3 unneeded lines --- src/chat.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/chat.py b/src/chat.py index a3d7b6cda..ce2042221 100644 --- a/src/chat.py +++ b/src/chat.py @@ -722,9 +722,6 @@ class Chat: elif text.startswith('/me ') or text.startswith('/me\n'): text = name + text[3:] text_tags.append(kind) - elif text.startswith('/chat '): - text = name + text[4:] - text_tags.append(kind) if kind == 'incoming': self.last_message_time[jid] = time.time()