diff options
author | mathieui <mathieui@mathieui.net> | 2014-04-13 22:39:49 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-04-13 22:39:49 +0200 |
commit | 9c2203e7e37f1eefea2bbd20ce22d107bee93636 (patch) | |
tree | 866437b6fd95b746533ed9d70952c474bead741c /src/plugin_manager.py | |
parent | f809dffd8e42daf74913fbfb817e7d19af9c2fe1 (diff) | |
download | poezio-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/plugin_manager.py')
-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 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 |