aboutsummaryrefslogtreecommitdiffstats
path: root/bot/__main__.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/__main__.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/__main__.py')
-rw-r--r--bot/__main__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/__main__.py b/bot/__main__.py
index 9dc0b173..a169257f 100644
--- a/bot/__main__.py
+++ b/bot/__main__.py
@@ -7,5 +7,6 @@ from bot.decorators import in_channel_check
log = logging.getLogger(__name__)
bot.add_check(in_channel_check(*WHITELISTED_CHANNELS, bypass_roles=STAFF_ROLES))
+bot.load_extension("bot.help")
bot.load_extension("bot.seasons")
bot.run(Client.token)