aboutsummaryrefslogtreecommitdiffstats
path: root/bot/__main__.py
diff options
context:
space:
mode:
authorGravatar Sebastiaan Zeeff <[email protected]>2020-03-19 10:34:05 +0100
committerGravatar GitHub <[email protected]>2020-03-19 10:34:05 +0100
commit5b0565c76f1fcb6bfeea9ff4592fb214039896b1 (patch)
tree66dd4d3ef88d90aa90e103aab097199742c2070e /bot/__main__.py
parentCI: bump Ubuntu image to 18.04 (diff)
parentMerge pull request #371 from ks129/help (diff)
Merge branch 'master' into python38
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)