From f897808452c7fc24fc7482025f527eddca5168f7 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Mon, 31 Aug 2015 15:49:05 +0200 Subject: Fix the join message where a space was colored while it should not be --- src/tabs/muctab.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tabs/muctab.py b/src/tabs/muctab.py index 38592dff..bb10779a 100644 --- a/src/tabs/muctab.py +++ b/src/tabs/muctab.py @@ -1251,8 +1251,8 @@ class MucTab(ChatTab): 'color_spec': spec_col, } else: - msg = ('\x19%(color_spec)s}%(spec)s \x19%(color)s}%(nick)s ' - '\x19%(info_col)s}(\x19%(jid_color)s}%(jid)s\x19' + msg = ('\x19%(color_spec)s}%(spec)s \x19%(color)s}%(nick)s' + '\x19%(info_col)s} (\x19%(jid_color)s}%(jid)s\x19' '%(info_col)s}) joined the chatroom') % { 'spec': char_join, 'nick': from_nick, 'color':color, 'jid':jid.full, -- cgit v1.2.3