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