diff options
author | 2022-05-09 18:21:21 +0200 | |
---|---|---|
committer | 2022-05-09 18:21:21 +0200 | |
commit | 019983c3785191a0c7182c62394cec2bac123d51 (patch) | |
tree | 54c296bd04a13a0097cbd7249b78a6716556d735 /bot/exts/core/extensions.py | |
parent | Doublefixed indentation and removed unused import. (diff) | |
parent | Bump pillow from 9.0.0 to 9.0.1 (#1045) (diff) |
Merge branch 'main' into uwu
Diffstat (limited to 'bot/exts/core/extensions.py')
-rw-r--r-- | bot/exts/core/extensions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/core/extensions.py b/bot/exts/core/extensions.py index 424bacac..d809d2b9 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(".")) @@ -152,7 +152,7 @@ class Extensions(commands.Cog): Grey indicates that the extension is unloaded. Green indicates that the extension is currently loaded. """ - embed = Embed(colour=Colour.blurple()) + embed = Embed(colour=Colour.og_blurple()) embed.set_author( name="Extensions List", url=Client.github_bot_repo, |