From 0df9082809ba963a7b769fa66dac2a4aee2fabd7 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sat, 21 Jul 2007 19:09:47 +0000 Subject: [PATCH] [fowles] fix a bug in bookmarks window. fixes #3311 --- src/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.py b/src/config.py index bf04797fb..3290ae1d3 100644 --- a/src/config.py +++ b/src/config.py @@ -2883,7 +2883,7 @@ class ManageBookmarksWindow: self.pass_entry.set_text(password) else: self.pass_entry.set_text('') - nick = model[iter][5] + nick = model[iter][6] if nick: nick = nick.decode('utf-8') self.nick_entry.set_text(nick)