Do not show the plugin unload on exit

This commit is contained in:
mathieui 2014-04-13 22:39:49 +02:00
parent f809dffd8e
commit 9c2203e7e3

View file

@ -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