mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 11:14:02 +02:00
Store: Fix change to function name change.
This commit is contained in:
parent
bc8ea972e3
commit
957155ea4b
1 changed files with 2 additions and 2 deletions
|
|
@ -23,7 +23,7 @@
|
|||
from calibre.utils.config import prefs, dynamic
|
||||
from calibre.utils.ipc.server import Server
|
||||
from calibre.library.database2 import LibraryDatabase2
|
||||
from calibre.customize.ui import interface_actions, enabled_store_plugins
|
||||
from calibre.customize.ui import interface_actions, available_store_plugins
|
||||
from calibre.gui2 import error_dialog, GetMetadata, open_url, \
|
||||
gprefs, max_available_height, config, info_dialog, Dispatcher, \
|
||||
question_dialog
|
||||
|
|
@ -144,7 +144,7 @@ def add_iaction(self, ac):
|
|||
|
||||
def load_store_plugins(self):
|
||||
self.istores = OrderedDict()
|
||||
for store in enabled_store_plugins():
|
||||
for store in available_store_plugins():
|
||||
if self.opts.ignore_plugins and store.plugin_path is not None:
|
||||
continue
|
||||
try:
|
||||
|
|
|
|||
Loading…
Reference in a new issue