catch all errors when trying to load a plugin

This commit is contained in:
Yann Leboulanger 2016-03-15 21:40:44 +01:00
parent 8d37cec3b0
commit ab7939f614
1 changed files with 1 additions and 1 deletions

View File

@ -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: