diff options
author | 2020-03-20 16:41:42 -0400 | |
---|---|---|
committer | 2020-03-20 16:41:42 -0400 | |
commit | 0acd9122991c798d76656431652ee90e975ac1ad (patch) | |
tree | d595a921a7d4032cce7a25f1373f85f58236cc84 /bot/bot.py | |
parent | (Space Cog): Removed date requirement from `.space mars` command. Now can com... (diff) | |
parent | Merge 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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |