aboutsummaryrefslogtreecommitdiffstats
path: root/bot/bot.py
diff options
context:
space:
mode:
authorGravatar S. Co1 <[email protected]>2020-03-13 13:48:18 -0400
committerGravatar GitHub <[email protected]>2020-03-13 13:48:18 -0400
commitb06c883aae3c7531aa4bb27c598608d23f0cf255 (patch)
tree5e447b8b460fd5edf794c1ed1c6bacd240216b73 /bot/bot.py
parentMerge pull request #370 from python-discord/feat/deps/355/pep8-naming (diff)
parentMerge branch 'master' into help (diff)
Merge pull request #371 from ks129/help
Added Python bot help command to SeasonalBot
Diffstat (limited to 'bot/bot.py')
-rw-r--r--bot/bot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/bot.py b/bot/bot.py
index 2a723021..8b389b6a 100644
--- a/bot/bot.py
+++ b/bot/bot.py
@@ -28,7 +28,7 @@ class SeasonalBot(commands.Bot):
# Unload all cogs
extensions = list(self.extensions.keys())
for extension in extensions:
- if extension != "bot.seasons": # We shouldn't unload the manager.
+ if extension not in ["bot.seasons", "bot.help"]: # We shouldn't unload the manager and help.
self.unload_extension(extension)
# Load in the list of cogs that was passed in here