summaryrefslogtreecommitdiff
path: root/poezio/plugin_manager.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-12-26 16:00:18 +0100
committermathieui <mathieui@mathieui.net>2016-12-26 16:01:35 +0100
commitfdb61cda2724f5cc79dedec4ecf041a92450216b (patch)
treef023941c1d8d2f79065bfba7379e3867a5be0586 /poezio/plugin_manager.py
parent2243687c442443ba56b22dd142a97b2811e796e8 (diff)
downloadpoezio-fdb61cda2724f5cc79dedec4ecf041a92450216b.tar.gz
poezio-fdb61cda2724f5cc79dedec4ecf041a92450216b.tar.bz2
poezio-fdb61cda2724f5cc79dedec4ecf041a92450216b.tar.xz
poezio-fdb61cda2724f5cc79dedec4ecf041a92450216b.zip
Add missing message types (fix #3271)
Which were being filtered by the information popup filter
Diffstat (limited to 'poezio/plugin_manager.py')
-rw-r--r--poezio/plugin_manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/plugin_manager.py b/poezio/plugin_manager.py
index bebf2133..f20797f0 100644
--- a/poezio/plugin_manager.py
+++ b/poezio/plugin_manager.py
@@ -68,7 +68,7 @@ class PluginManager(object):
module = None
loader = self.finder.find_module(name, self.load_path)
if not loader:
- self.core.information('Could not find plugin: %s' % name)
+ self.core.information('Could not find plugin: %s' % name, 'Error')
return
module = loader.load_module()
except Exception as e: