diff options
author | 2021-09-06 13:11:27 +0100 | |
---|---|---|
committer | 2021-09-06 13:11:27 +0100 | |
commit | 5e136d9aadcdb334f502cebb6e85981394802324 (patch) | |
tree | 58abafa6a5acd9938fd291947c7c9ce8bd949938 /bot/utils/extensions.py | |
parent | Set logging level for async-rediscache to warning (diff) | |
parent | Merge pull request #853 from python-discord/post-restructure-fix (diff) |
Merge branch 'main' into async-redisache-logs
Diffstat (limited to 'bot/utils/extensions.py')
-rw-r--r-- | bot/utils/extensions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/utils/extensions.py b/bot/utils/extensions.py index cbb8f15e..09192ae2 100644 --- a/bot/utils/extensions.py +++ b/bot/utils/extensions.py @@ -36,7 +36,7 @@ def walk_extensions() -> Iterator[str]: async def invoke_help_command(ctx: Context) -> None: """Invoke the help command or default help command if help extensions is not loaded.""" - if "bot.exts.evergreen.help" in ctx.bot.extensions: + if "bot.exts.core.help" in ctx.bot.extensions: help_command = ctx.bot.get_command("help") await ctx.invoke(help_command, ctx.command.qualified_name) return |