diff options
| -rw-r--r-- | bot/cogs/site.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/cogs/site.py b/bot/cogs/site.py index 853e29568..c17761a2b 100644 --- a/bot/cogs/site.py +++ b/bot/cogs/site.py @@ -21,7 +21,7 @@ class Site(Cog):      @group(name="site", aliases=("s",), invoke_without_command=True)      async def site_group(self, ctx: Context) -> None:          """Commands for getting info about our website.""" -        await ctx.invoke(self.bot.get_command("help"), "site") +        await ctx.send_help("site")      @site_group.command(name="home", aliases=("about",))      async def site_main(self, ctx: Context) -> None: | 
