aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Matteo Bertucci <[email protected]>2019-10-07 12:17:55 +0200
committerGravatar GitHub <[email protected]>2019-10-07 12:17:55 +0200
commit5a8feefd6fe28b9f0030e6c221c982905848a74a (patch)
treec09673bda9476e6a4f8cfd80e6796185ad2f7940
parentFix my broken English (diff)
Turn the jump URL into a clickable link
-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 1b38d0bb2..16c431448 100644
--- a/bot/cogs/reminders.py
+++ b/bot/cogs/reminders.py
@@ -103,7 +103,7 @@ class Reminders(Scheduler, Cog):
if "jump_url" in reminder: # keep backward compatibility
embed.description = (f"Here's your reminder: `{reminder['content']}`.\n"
- f"Jump back to when you created the reminder : {reminder['jump_url']}")
+ f"[Jump back to when you created the reminder]({reminder['jump_url']})")
else:
embed.description = f"Here's your reminder: `{reminder['content']}`"