diff options
| author | 2019-05-11 21:24:26 -0400 | |
|---|---|---|
| committer | 2019-05-11 21:24:26 -0400 | |
| commit | bf1901eba73f7f7d3ea39cf3db6c1ecf5195e321 (patch) | |
| tree | cfa4d24f05f987da2c8bc72be4addb2ece96c468 /bot/seasons/christmas/adventofcode.py | |
| parent | Bump d.py version & relock (diff) | |
Fix broken help getter patterns
Utilize new ctx.send_help coro
Bump d.py minor version & relock
Diffstat (limited to '')
| -rw-r--r-- | bot/seasons/christmas/adventofcode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/christmas/adventofcode.py b/bot/seasons/christmas/adventofcode.py index 5d05dce6..075c5606 100644 --- a/bot/seasons/christmas/adventofcode.py +++ b/bot/seasons/christmas/adventofcode.py @@ -132,7 +132,7 @@ class AdventOfCode(commands.Cog): async def adventofcode_group(self, ctx: commands.Context): """All of the Advent of Code commands.""" - await ctx.invoke(self.bot.get_command("help"), "adventofcode") + await ctx.send_help(ctx.command) @adventofcode_group.command( name="subscribe", |