diff options
author | 2020-03-20 18:16:44 -0400 | |
---|---|---|
committer | 2020-03-20 18:16:44 -0400 | |
commit | 55aac3508b30ffbb26a74372f958bc526a9773fc (patch) | |
tree | 620601201c74a56f71dda42cfd73823002fe6311 /bot/bot.py | |
parent | Battleships - change hard-coded strings in subcommand (diff) | |
parent | Merge pull request #373 from python-discord/python38 (diff) |
Merge branch 'master' into battleships
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 |