aboutsummaryrefslogtreecommitdiffstats
path: root/bot/__main__.py
diff options
context:
space:
mode:
authorGravatar kwzrd <[email protected]>2020-03-28 14:59:45 +0100
committerGravatar kwzrd <[email protected]>2020-03-28 14:59:45 +0100
commit09edf447aa3da21a14da0189025db6ef5e32ca42 (patch)
tree5ff2b4148f9d2e767820e1b31edd6f6e8fbe53fb /bot/__main__.py
parentDeseasonify: move help extension under evergreen pkg (diff)
Deseasonify: move branding extension under evergreen pkg
Diffstat (limited to 'bot/__main__.py')
-rw-r--r--bot/__main__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/bot/__main__.py b/bot/__main__.py
index 5d4056af..47d99648 100644
--- a/bot/__main__.py
+++ b/bot/__main__.py
@@ -12,6 +12,4 @@ bot.add_check(in_channel_check(*WHITELISTED_CHANNELS, bypass_roles=STAFF_ROLES))
for ext in get_extensions():
bot.load_extension(ext)
-bot.load_extension("bot.branding")
-
bot.run(Client.token)