diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-08-31 15:49:05 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-08-31 15:49:05 +0200 |
commit | f897808452c7fc24fc7482025f527eddca5168f7 (patch) | |
tree | 00b42777f29cf2fc10c804f5265f91ab6a22f2f3 /src/tabs | |
parent | 160693711d9df30564146fc826276c38d6ea2e18 (diff) | |
download | poezio-f897808452c7fc24fc7482025f527eddca5168f7.tar.gz poezio-f897808452c7fc24fc7482025f527eddca5168f7.tar.bz2 poezio-f897808452c7fc24fc7482025f527eddca5168f7.tar.xz poezio-f897808452c7fc24fc7482025f527eddca5168f7.zip |
Fix the join message where a space was colored while it should not be
Diffstat (limited to 'src/tabs')
-rw-r--r-- | src/tabs/muctab.py | 4 |
1 files 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, |