diff options
author | Florent Le Coz <louiz@louiz.org> | 2013-05-24 22:13:56 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2013-05-24 22:13:56 +0200 |
commit | 1b9dc72d14f52d55a936d92311c18912567359a4 (patch) | |
tree | e702d72a1390451d6dda92c94602521b30d2facb | |
parent | 3356cac9ce27b69c1632c96bc40c2269b63db5b0 (diff) | |
download | poezio-1b9dc72d14f52d55a936d92311c18912567359a4.tar.gz poezio-1b9dc72d14f52d55a936d92311c18912567359a4.tar.bz2 poezio-1b9dc72d14f52d55a936d92311c18912567359a4.tar.xz poezio-1b9dc72d14f52d55a936d92311c18912567359a4.zip |
Fix a traceback (plugin_manager)
-rw-r--r-- | src/plugin_manager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugin_manager.py b/src/plugin_manager.py index 208f2472..f494fefc 100644 --- a/src/plugin_manager.py +++ b/src/plugin_manager.py @@ -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() |