From ad00f721fae0fc10efb23369479152e93cb8aad6 Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Sat, 30 Jan 2010 04:42:29 +0000 Subject: /help command. fixed #1122 --- src/window.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/window.py') diff --git a/src/window.py b/src/window.py index 5f3d2a74..c4774342 100644 --- a/src/window.py +++ b/src/window.py @@ -135,7 +135,10 @@ class TextWin(object): win = self.wins[room.name].win users = room.users if len(line) == 2: - win.addstr('\n['+line[0].strftime("%H:%M:%S") + "] *" + line[1]+"*") + win.addstr('\n['+line[0].strftime("%H:%M:%S") + "] ") + win.attron(curses.color_pair(8)) + win.addstr(line[1]) + win.attroff(curses.color_pair(8)) elif len(line) == 3: for user in users: if user.nick == line[1]: -- cgit v1.2.3