summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2014-04-13 22:39:49 +0200
committermathieui <mathieui@mathieui.net>2014-04-13 22:39:49 +0200
commit9c2203e7e37f1eefea2bbd20ce22d107bee93636 (patch)
tree866437b6fd95b746533ed9d70952c474bead741c /src
parentf809dffd8e42daf74913fbfb817e7d19af9c2fe1 (diff)
downloadpoezio-9c2203e7e37f1eefea2bbd20ce22d107bee93636.tar.gz
poezio-9c2203e7e37f1eefea2bbd20ce22d107bee93636.tar.bz2
poezio-9c2203e7e37f1eefea2bbd20ce22d107bee93636.tar.xz
poezio-9c2203e7e37f1eefea2bbd20ce22d107bee93636.zip
Do not show the plugin unload on exit
Diffstat (limited to 'src')
-rw-r--r--src/plugin_manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugin_manager.py b/src/plugin_manager.py
index 851df819..c58082e9 100644
--- a/src/plugin_manager.py
+++ b/src/plugin_manager.py
@@ -49,7 +49,7 @@ class PluginManager(object):
def disable_plugins(self):
for plugin in set(self.plugins.keys()):
try:
- self.unload(plugin)
+ self.unload(plugin, notify=False)
except:
pass