From ffaf7af1e68f9195b08dd39e1756442fdecbafc1 Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Wed, 16 Jun 2010 09:47:52 +0000 Subject: fix role=none crash. Fixed #1492 --- src/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gui.py') diff --git a/src/gui.py b/src/gui.py index 988142f6..bbe658fc 100644 --- a/src/gui.py +++ b/src/gui.py @@ -422,7 +422,7 @@ class Gui(object): if by: self.add_message_to_room(room, _("You have been kicked by %(by)s. Reason: %(reason)s") % {'by':by, 'reason':reason}) else: - self.add_message_to_room(room, _("You have been kicked. Reason: %s") % (reason)) + self.add_message_to_room(room, _("You have been kicked. Reason: %s") % (reason.encode('utf-8'))) else: if by: self.add_message_to_room(room, _("%(nick)s has been kicked by %(by)s. Reason: %(reason)s") % {'nick':from_nick, 'by':by, 'reason':reason}) -- cgit v1.2.3