aboutsummaryrefslogtreecommitdiffstats
path: root/bot/utils/extensions.py
diff options
context:
space:
mode:
authorGravatar Xithrius <[email protected]>2021-09-05 13:40:16 -0700
committerGravatar GitHub <[email protected]>2021-09-05 13:40:16 -0700
commitda43ac4255fb255cc1feb9b146e1d8faa68858f6 (patch)
tree9c5a1e8d4543ade9946fe86da17fc69b83ba1a81 /bot/utils/extensions.py
parentFix issues occured while deploying [no ci] (diff)
parentMerge pull request #853 from python-discord/post-restructure-fix (diff)
Merge branch 'main' into color-677
Diffstat (limited to 'bot/utils/extensions.py')
-rw-r--r--bot/utils/extensions.py2
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