mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
Ignore failures to load cached metadata plugins
This commit is contained in:
parent
7f35f289ce
commit
97041abaa4
@ -82,7 +82,10 @@ def patch_plugins():
|
||||
continue
|
||||
if name == 'search_engines':
|
||||
patch_search_engines(val)
|
||||
try:
|
||||
p = load_plugin(val)
|
||||
except Exception:
|
||||
p = None
|
||||
if p is not None:
|
||||
patches[p.name] = p
|
||||
patch_metadata_plugins(patches)
|
||||
|
Loading…
x
Reference in New Issue
Block a user