diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-09-29 02:07:45 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-09-29 02:07:45 +0200 |
commit | e9e15058bd22ecc225bde40380b0fcc2b422d37f (patch) | |
tree | 6fee8417f5cdd01ad7d0b2c2a63ede38c4a2f045 /src/tabs.py | |
parent | ee2b63b91de90e79bb320d82ccb50e8ed11c5faa (diff) | |
download | poezio-e9e15058bd22ecc225bde40380b0fcc2b422d37f.tar.gz poezio-e9e15058bd22ecc225bde40380b0fcc2b422d37f.tar.bz2 poezio-e9e15058bd22ecc225bde40380b0fcc2b422d37f.tar.xz poezio-e9e15058bd22ecc225bde40380b0fcc2b422d37f.zip |
Mais putain
Diffstat (limited to 'src/tabs.py')
-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 63fd2c96..bc656cdd 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -884,7 +884,7 @@ class MucTab(ChatTab): if by: kick_msg = _('\x191}%(spec)s \x193}%(nick)s\x195} has been banned by \x194}%(by)s') % {'spec':get_theme().CHAR_KICK, 'nick':from_nick, 'by':by} else: - kick_msg = _('\x191}%(spec)s \x193}%(nick)s\x195 has been banned') % {'spec':get_theme().CHAR_KICK, 'nick':from_nick.replace('"', '\\"')} + kick_msg = _('\x191}%(spec)s \x193}%(nick)s\x195} has been banned') % {'spec':get_theme().CHAR_KICK, 'nick':from_nick.replace('"', '\\"')} if reason is not None and reason.text: kick_msg += _('\x195} Reason: \x196}%(reason)s\x195}') % {'reason': reason.text} room.add_message(kick_msg) |