From 163d3ebadf761b3331146347df58dec7f0ba9066 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 7 Apr 2006 15:44:33 +0000 Subject: [PATCH] fix encoding problem. Fixes #1825 --- src/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.py b/src/config.py index 9b997270d..2cceab861 100644 --- a/src/config.py +++ b/src/config.py @@ -2264,7 +2264,7 @@ class ManageBookmarksWindow: # No parent, so we got an account -> add to this. add_to = iter - account = model.get_value(add_to, 1) + account = model[add_to][1].decode('utf-8') nick = gajim.nicks[account] self.treestore.append(add_to, [account, _('New Room'), '', False, '', nick])