From 768cd4d887f5509063686aaa404aaffc5fc28c9a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 5 Aug 2013 22:33:05 +0530 Subject: [PATCH] Plugin updater dialog: Use index names Use index names as the key for plugins rather than names from the plugin zip file, as deprecated plugins sometimes have the same name in the zip file, but different names in the index. --- src/calibre/gui2/dialogs/plugin_updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/dialogs/plugin_updater.py b/src/calibre/gui2/dialogs/plugin_updater.py index 123a14b829..0e95116866 100644 --- a/src/calibre/gui2/dialogs/plugin_updater.py +++ b/src/calibre/gui2/dialogs/plugin_updater.py @@ -185,7 +185,7 @@ class PluginFilterComboBox(QComboBox): class DisplayPlugin(object): def __init__(self, plugin): - self.name = plugin['name'] + self.name = plugin['index_name'] self.forum_link = plugin['thread_url'] self.zip_url = SERVER + plugin['file'] self.installed_version = None