diff options
| author | 2020-06-10 23:47:16 +0100 | |
|---|---|---|
| committer | 2020-06-10 23:47:16 +0100 | |
| commit | 4c4b4f8e23bc2ad58d102c5f23077c54392e6876 (patch) | |
| tree | 026a83318dcf7743e6850b3e81806bc2bd4222a0 /bot/cogs/reminders.py | |
| parent | Fix exception message assertions in converter tests (diff) | |
| parent | Merge pull request #988 from python-discord/snekbox-compose (diff) | |
Merge branch 'master' into bug/backend/906/converter-year-range
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/reminders.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/reminders.py b/bot/cogs/reminders.py index 24c279357..c242d2920 100644 --- a/bot/cogs/reminders.py +++ b/bot/cogs/reminders.py @@ -158,7 +158,7 @@ class Reminders(Scheduler, Cog): ) await self._delete_reminder(reminder["id"]) - @group(name="remind", aliases=("reminder", "reminders"), invoke_without_command=True) + @group(name="remind", aliases=("reminder", "reminders", "remindme"), invoke_without_command=True) async def remind_group(self, ctx: Context, expiration: Duration, *, content: str) -> None: """Commands for managing your reminders.""" await ctx.invoke(self.new_reminder, expiration=expiration, content=content) @@ -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: |