Merge "Be robust on import plugin module"
This commit is contained in:
commit
b230ba73cd
@ -134,7 +134,13 @@ def get_plugin_modules(group):
|
|||||||
for ep in pkg_resources.iter_entry_points(group):
|
for ep in pkg_resources.iter_entry_points(group):
|
||||||
LOG.debug('Found plugin %r', ep.name)
|
LOG.debug('Found plugin %r', ep.name)
|
||||||
|
|
||||||
__import__(ep.module_name)
|
try:
|
||||||
|
__import__(ep.module_name)
|
||||||
|
except Exception:
|
||||||
|
sys.stderr.write(
|
||||||
|
"WARNING: Failed to import plugin %r.\n" % ep.name)
|
||||||
|
continue
|
||||||
|
|
||||||
module = sys.modules[ep.module_name]
|
module = sys.modules[ep.module_name]
|
||||||
mod_list.append(module)
|
mod_list.append(module)
|
||||||
init_func = getattr(module, 'Initialize', None)
|
init_func = getattr(module, 'Initialize', None)
|
||||||
|
Loading…
Reference in New Issue
Block a user