aboutsummaryrefslogtreecommitdiffstats
path: root/bot/__main__.py
diff options
context:
space:
mode:
authorGravatar Shivansh-007 <[email protected]>2021-02-23 16:20:00 +0530
committerGravatar Shivansh-007 <[email protected]>2021-02-23 16:20:00 +0530
commite426aebef0effb48e5128e1391461bc3750ef8f5 (patch)
treeb050ebbb70e73b3693f350dd22d34fcae4dc4ddf /bot/__main__.py
parentMerge branch 'feature/connect_four' of https://github.com/Shivansh-007/sir-la... (diff)
parentMerge pull request #589 from python-discord/Reset-valentine-command-cooldown-... (diff)
Merge remote-tracking branch 'origin/master' into feature/connect_four
# Conflicts: # Pipfile.lock
Diffstat (limited to 'bot/__main__.py')
-rw-r--r--bot/__main__.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/bot/__main__.py b/bot/__main__.py
index e9b14a53..c6e5fa57 100644
--- a/bot/__main__.py
+++ b/bot/__main__.py
@@ -6,10 +6,9 @@ from sentry_sdk.integrations.redis import RedisIntegration
from bot.bot import bot
from bot.constants import Client, GIT_SHA, STAFF_ROLES, WHITELISTED_CHANNELS
-from bot.utils.decorators import in_channel_check
+from bot.utils.decorators import whitelist_check
from bot.utils.extensions import walk_extensions
-
sentry_logging = LoggingIntegration(
level=logging.DEBUG,
event_level=logging.WARNING
@@ -26,7 +25,7 @@ sentry_sdk.init(
log = logging.getLogger(__name__)
-bot.add_check(in_channel_check(*WHITELISTED_CHANNELS, bypass_roles=STAFF_ROLES))
+bot.add_check(whitelist_check(channels=WHITELISTED_CHANNELS, roles=STAFF_ROLES))
for ext in walk_extensions():
bot.load_extension(ext)