diff options
author | 2021-09-05 19:46:37 +0100 | |
---|---|---|
committer | 2021-09-05 19:46:37 +0100 | |
commit | 8a410f3abd39a1b48c514d32651a50d4bdced492 (patch) | |
tree | 17fbb917adec0a1283d3d2456d8b09eee0334371 /bot/utils/extensions.py | |
parent | Merge pull request #845 from python-discord/Pin-platform-in-Dockerfile (diff) | |
parent | Merge branch 'main' into lance-restructure (diff) |
Merge pull request #851 from python-discord/lance-restructure
Restructure Sir Lancebot
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 |