Browse Source

Update Plugin.destroy to work w/ the latest stuffs

pull/5/head
Andrei 9 years ago
parent
commit
c297d45257
  1. 12
      disco/bot/plugin.py

12
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):
"""

Loading…
Cancel
Save