aboutsummaryrefslogtreecommitdiffstats
path: root/bot/__main__.py
diff options
context:
space:
mode:
authorGravatar S. Co1 <[email protected]>2020-03-20 18:16:44 -0400
committerGravatar GitHub <[email protected]>2020-03-20 18:16:44 -0400
commit55aac3508b30ffbb26a74372f958bc526a9773fc (patch)
tree620601201c74a56f71dda42cfd73823002fe6311 /bot/__main__.py
parentBattleships - change hard-coded strings in subcommand (diff)
parentMerge pull request #373 from python-discord/python38 (diff)
Merge branch 'master' into battleships
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)