Fix a traceback (plugin_manager)
This commit is contained in:
parent
3356cac9ce
commit
1b9dc72d14
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ class PluginManager(object):
|
||||||
else: # 3.3 & >
|
else: # 3.3 & >
|
||||||
loader = finder.find_module(name)
|
loader = finder.find_module(name)
|
||||||
if not loader:
|
if not loader:
|
||||||
self.core.information('Could not load plugin: %s' % e, 'Error')
|
self.core.information('Could not find plugin')
|
||||||
return
|
return
|
||||||
module = loader.load_module()
|
module = loader.load_module()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue