fix encoding problem. Fixes #1825

This commit is contained in:
Yann Leboulanger 2006-04-07 15:44:33 +00:00
parent d47db39011
commit 163d3ebadf
1 changed files with 1 additions and 1 deletions

View File

@ -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])