diff options
author | 2019-03-31 09:14:45 -0400 | |
---|---|---|
committer | 2019-03-31 09:14:45 -0400 | |
commit | 8f1c52d10041185d94c53dafc65baaa9d4f88889 (patch) | |
tree | 3d7f94ab4581e0db955652004012bdb9580c2c54 | |
parent | Re-add cog inheritance removed by poor merge conflict resolution (diff) |
Migrate season manager cog unload to new function
-rw-r--r-- | bot/seasons/season.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/season.py b/bot/seasons/season.py index 89ca3ca7..96aea5b8 100644 --- a/bot/seasons/season.py +++ b/bot/seasons/season.py @@ -538,5 +538,5 @@ class SeasonManager(commands.Cog): await self.season.announce_season() - def __unload(self): + def cog_unload(self): self.season_task.cancel() |