From c297d45257f343c38d352b942cddd4b36b8de997 Mon Sep 17 00:00:00 2001 From: Andrei Date: Fri, 7 Oct 2016 11:18:30 -0500 Subject: [PATCH] Update Plugin.destroy to work w/ the latest stuffs --- disco/bot/plugin.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/disco/bot/plugin.py b/disco/bot/plugin.py index d37406b..4554835 100644 --- a/disco/bot/plugin.py +++ b/disco/bot/plugin.py @@ -228,9 +228,17 @@ class Plugin(LoggingClass, PluginDeco): def destroy(self): """ - Destroys the plugin (removing all listeners) + Destroys the plugin, removing all listeners and schedules. Called after + unload. """ - map(lambda k: k.remove(), self._events) + for listener in self.listeners: + listener.remove() + + for schedule in self.schedules.values(): + schedule.kill() + + self.listeners = [] + self.schedules = {} def load(self): """