mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-07 10:14:46 -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
|
continue
|
||||||
if name == 'search_engines':
|
if name == 'search_engines':
|
||||||
patch_search_engines(val)
|
patch_search_engines(val)
|
||||||
p = load_plugin(val)
|
try:
|
||||||
|
p = load_plugin(val)
|
||||||
|
except Exception:
|
||||||
|
p = None
|
||||||
if p is not None:
|
if p is not None:
|
||||||
patches[p.name] = p
|
patches[p.name] = p
|
||||||
patch_metadata_plugins(patches)
|
patch_metadata_plugins(patches)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user