diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-25 11:17:26 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-25 11:42:50 +0100 |
commit | 72c634aaeaaa83e05e159f68191f1f6e4e929c61 (patch) | |
tree | d13067b930cca281d598674fe6542890e20300e4 /src/tabs.py | |
parent | ac2b71e1eda5423dcfb852c147bafc66fd119703 (diff) | |
download | poezio-72c634aaeaaa83e05e159f68191f1f6e4e929c61.tar.gz poezio-72c634aaeaaa83e05e159f68191f1f6e4e929c61.tar.bz2 poezio-72c634aaeaaa83e05e159f68191f1f6e4e929c61.tar.xz poezio-72c634aaeaaa83e05e159f68191f1f6e4e929c61.zip |
fixes #2270
Diffstat (limited to 'src/tabs.py')
-rw-r--r-- | src/tabs.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tabs.py b/src/tabs.py index 76bbb372..3f40ad12 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -1319,9 +1319,9 @@ class MucTab(ChatTab): highlight = self.do_highlight(txt, time, nickname) if highlight: nick_color = highlight - if special_message: - txt = '\x195}%s' % (txt,) - nickname = None + if special_message: + txt = '\x195}%s' % (txt,) + nickname = None time = time or datetime.now() self._text_buffer.add_message(txt, time, nickname, nick_color, history, user) |