diff options
author | mathieui <mathieui@mathieui.net> | 2011-11-03 08:57:21 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2011-11-03 08:57:21 +0100 |
commit | a603f46906b722d54220e3dba519fba1da2fd18b (patch) | |
tree | 12abdeb16850b5d9ff455cd982bae0fdd71e1383 | |
parent | dac8a12abff0ec7c8d3baec4eb73535040c9de9d (diff) | |
download | poezio-a603f46906b722d54220e3dba519fba1da2fd18b.tar.gz poezio-a603f46906b722d54220e3dba519fba1da2fd18b.tar.bz2 poezio-a603f46906b722d54220e3dba519fba1da2fd18b.tar.xz poezio-a603f46906b722d54220e3dba519fba1da2fd18b.zip |
Fix a typo that causes a curses TB
-rw-r--r-- | src/tabs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py index b8385747..a9709c02 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -1025,7 +1025,7 @@ class MucTab(ChatTab): # to be displayed has changed color = user.color[0] if config.get('display_user_color_in_join_part', '') == 'true' else 3 if from_nick == room.own_nick: - msg = _('\x193d}You\x195} changed: ') + msg = _('\x193}You\x195} changed: ') else: msg = _('\x19%(color)d}%(nick)s\x195} changed: ') % {'nick': from_nick.replace('"', '\\"'), 'color': color} if show not in SHOW_NAME: |