summaryrefslogtreecommitdiff
path: root/poezio/plugin.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.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.py')
-rw-r--r--poezio/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/plugin.py b/poezio/plugin.py
index 59e4f490..c8bffc95 100644
--- a/poezio/plugin.py
+++ b/poezio/plugin.py
@@ -81,7 +81,7 @@ class SafetyMetaclass(type):
raise
elif SafetyMetaclass.core:
log.error('Error in a plugin', exc_info=True)
- SafetyMetaclass.core.information(traceback.format_exc())
+ SafetyMetaclass.core.information(traceback.format_exc(), 'Error')
return None
return helper