diff options
| author | 2020-03-19 10:34:05 +0100 | |
|---|---|---|
| committer | 2020-03-19 10:34:05 +0100 | |
| commit | 5b0565c76f1fcb6bfeea9ff4592fb214039896b1 (patch) | |
| tree | 66dd4d3ef88d90aa90e103aab097199742c2070e /bot/bot.py | |
| parent | CI: bump Ubuntu image to 18.04 (diff) | |
| parent | Merge pull request #371 from ks129/help (diff) | |
Merge branch 'master' into python38
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 | 
