Fix a traceback (plugin_manager)

This commit is contained in:
Florent Le Coz 2013-05-24 22:13:56 +02:00
parent 3356cac9ce
commit 1b9dc72d14

View file

@ -100,7 +100,7 @@ class PluginManager(object):
else: # 3.3 & >
loader = finder.find_module(name)
if not loader:
self.core.information('Could not load plugin: %s' % e, 'Error')
self.core.information('Could not find plugin')
return
module = loader.load_module()