diff options
author | 2020-09-24 19:38:42 +0200 | |
---|---|---|
committer | 2020-09-24 19:38:42 +0200 | |
commit | 01ea3866cda4ba686a5749d4f4ced709f592b34f (patch) | |
tree | 77937e7da049ded12f0475ac34acf7c3b70035fe /bot/__main__.py | |
parent | Merge pull request #456 from Anubhav1603/update_dpy (diff) | |
parent | Merge branch 'master' into ext-managment (diff) |
Merge pull request #449 from gustavwilliam/ext-managment
Add extension management commands
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, |