catch all errors when trying to load a plugin
This commit is contained in:
parent
8d37cec3b0
commit
ab7939f614
|
@ -480,7 +480,7 @@ class PluginManager(metaclass=Singleton):
|
|||
continue
|
||||
try:
|
||||
module = __import__(module_name)
|
||||
except (ValueError, ImportError, AttributeError) as error:
|
||||
except Exception as error:
|
||||
log.debug(str(error))
|
||||
|
||||
if module is None:
|
||||
|
|
Loading…
Reference in New Issue