diff options
author | 2020-09-23 18:09:03 +0200 | |
---|---|---|
committer | 2020-09-23 18:09:03 +0200 | |
commit | 921f180f5310786b23712f82621ad3e0d8578efe (patch) | |
tree | e30fb6d32e8619b2bde8dec8d0fc345969c5842d /bot/__main__.py | |
parent | Remove non-existing class reference in constants (diff) |
Remove walk_extensions from exts' init
- Updates __main__.py to use the walk_extensions in utils/extensions.py
Diffstat (limited to 'bot/__main__.py')
-rw-r--r-- | bot/__main__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/__main__.py b/bot/__main__.py index 0ffd6143..cd2d43a9 100644 --- a/bot/__main__.py +++ b/bot/__main__.py @@ -5,8 +5,9 @@ from sentry_sdk.integrations.logging import LoggingIntegration from bot.bot import bot from bot.constants import Client, STAFF_ROLES, WHITELISTED_CHANNELS -from bot.exts import walk_extensions from bot.utils.decorators import in_channel_check +from bot.utils.extensions import walk_extensions + sentry_logging = LoggingIntegration( level=logging.DEBUG, |