diff options
| author | 2020-06-02 19:25:47 -0700 | |
|---|---|---|
| committer | 2020-06-02 19:25:47 -0700 | |
| commit | 630b45e3c281611dcb2d6f6d95146679d122afad (patch) | |
| tree | a3b78c01236de7b6f32c55e39ef2ed7184fa5819 /bot/cogs/reminders.py | |
| parent | Token remover: remove the `delete_message` function (diff) | |
| parent | Merge pull request #979 from neonsea/modmail-tag (diff) | |
Merge remote-tracking branch 'origin/master' into bug/filters/928/non-ascii-token
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/reminders.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/reminders.py b/bot/cogs/reminders.py index 8b6457cbb..c242d2920 100644 --- a/bot/cogs/reminders.py +++ b/bot/cogs/reminders.py @@ -281,7 +281,7 @@ class Reminders(Scheduler, Cog): @remind_group.group(name="edit", aliases=("change", "modify"), invoke_without_command=True) async def edit_reminder_group(self, ctx: Context) -> None: """Commands for modifying your current reminders.""" - await ctx.invoke(self.bot.get_command("help"), "reminders", "edit") + await ctx.send_help(ctx.command) @edit_reminder_group.command(name="duration", aliases=("time",)) async def edit_reminder_duration(self, ctx: Context, id_: int, expiration: Duration) -> None: |