aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Akarys42 <[email protected]>2019-10-06 13:03:22 +0200
committerGravatar Akarys42 <[email protected]>2019-10-06 13:03:22 +0200
commit72734cb0cb3ac7292009d62f5c9fd0f367aa139a (patch)
tree25bfa4055693a4080754d1662e87f682d4fae65a
parentFix linting error (diff)
Add line break between the reminder and the jump url
-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 27954d10e..288035b56 100644
--- a/bot/cogs/reminders.py
+++ b/bot/cogs/reminders.py
@@ -102,7 +102,7 @@ class Reminders(Scheduler, Cog):
name="It has arrived!")
if "jump_url" in reminder: # keep backward compatibility
- embed.description = (f"Here's your reminder: `{reminder['content']}`."
+ embed.description = (f"Here's your reminder: `{reminder['content']}`.\n"
f"Jump back when you created the reminder : {reminder['jump_url']}")
else:
embed.description = f"Here's your reminder: `{reminder['content']}`"