From 2475d4728d687bbf3a71a1a2afb3659341dc2cc3 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Mon, 9 May 2005 10:46:40 +0000 Subject: [PATCH] \t is only possible via copy pasting and we shouldn't touch clipboard text where we can --- src/chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chat.py b/src/chat.py index 58b736ddb..0256b98bc 100644 --- a/src/chat.py +++ b/src/chat.py @@ -644,7 +644,7 @@ class Chat: if kind == 'status': print_all_special = True - elif text.split()[0] == '/me': + elif text.startswith('/me ') or text.startswith('/me\n'): text = name + text[3:] print_all_special = True