aboutsummaryrefslogtreecommitdiffstats
path: root/bot/bot.py
diff options
context:
space:
mode:
authorGravatar S. Co1 <[email protected]>2020-03-20 16:41:42 -0400
committerGravatar GitHub <[email protected]>2020-03-20 16:41:42 -0400
commit0acd9122991c798d76656431652ee90e975ac1ad (patch)
treed595a921a7d4032cce7a25f1373f85f58236cc84 /bot/bot.py
parent(Space Cog): Removed date requirement from `.space mars` command. Now can com... (diff)
parentMerge pull request #373 from python-discord/python38 (diff)
Merge branch 'master' into space-cog
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