diff options
author | 2019-10-07 12:39:30 +0200 | |
---|---|---|
committer | 2019-10-07 12:39:30 +0200 | |
commit | 716cb544c95fe9ed98981fd18245cedd625daa8c (patch) | |
tree | 7bbf1af53ae870b83e18d5d44ebb25d6a7fde51c | |
parent | Turn the jump URL into a clickable link (diff) |
Delete “confirmation echo”
-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 16c431448..d06dbcc7f 100644 --- a/bot/cogs/reminders.py +++ b/bot/cogs/reminders.py @@ -179,7 +179,7 @@ class Reminders(Scheduler, Cog): # Confirm to the user that it worked. await self._send_confirmation( ctx, - on_success=f"Your reminder `{content}` will arrive in {humanize_delta(relativedelta(expiration, now))}!" + on_success=f"Your reminder will arrive in {humanize_delta(relativedelta(expiration, now))}!" ) loop = asyncio.get_event_loop() |