From b7468994fcdf417a6ce0d628493f5cb8307a21e8 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 6 May 2011 16:48:55 -0600 Subject: [PATCH] Fix #778795 (author(s) dropdown list shows unconverted list) --- src/calibre/gui2/metadata/basic_widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/metadata/basic_widgets.py b/src/calibre/gui2/metadata/basic_widgets.py index c4282b3654..00fa0e26e8 100644 --- a/src/calibre/gui2/metadata/basic_widgets.py +++ b/src/calibre/gui2/metadata/basic_widgets.py @@ -208,7 +208,7 @@ class AuthorsEdit(MultiCompleteComboBox): for i in all_authors: id, name = i name = name.strip().replace('|', ',') - self.addItem(authors_to_string(name)) + self.addItem(name) self.set_separator('&') self.set_space_before_sep(True)