diff options
author | 2021-09-21 16:51:27 -0400 | |
---|---|---|
committer | 2021-09-21 16:51:27 -0400 | |
commit | 6e7e65d12392bfa44a13d82fa90631482d9eb653 (patch) | |
tree | 14378bb9beefbd9f21e899e3ea4b467f25725f48 /bot/exts/core/extensions.py | |
parent | Merge pull request #873 from python-discord/no-hangman-multiplayer (diff) |
properly blacklist the extensions cog
since the restructure of lancebot, this code was incorrect, and is no longer blacklisting itself.
Diffstat (limited to 'bot/exts/core/extensions.py')
-rw-r--r-- | bot/exts/core/extensions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/core/extensions.py b/bot/exts/core/extensions.py index 424bacac..dbb9e069 100644 --- a/bot/exts/core/extensions.py +++ b/bot/exts/core/extensions.py @@ -18,7 +18,7 @@ from bot.utils.pagination import LinePaginator log = logging.getLogger(__name__) -UNLOAD_BLACKLIST = {f"{exts.__name__}.utils.extensions"} +UNLOAD_BLACKLIST = {f"{exts.__name__}.core.extensions"} BASE_PATH_LEN = len(exts.__name__.split(".")) |