aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Matteo Bertucci <[email protected]>2019-10-07 12:39:30 +0200
committerGravatar GitHub <[email protected]>2019-10-07 12:39:30 +0200
commit716cb544c95fe9ed98981fd18245cedd625daa8c (patch)
tree7bbf1af53ae870b83e18d5d44ebb25d6a7fde51c
parentTurn the jump URL into a clickable link (diff)
Delete “confirmation echo”
-rw-r--r--bot/cogs/reminders.py2
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()