aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Matteo Bertucci <[email protected]>2021-08-11 17:49:33 +0200
committerGravatar GitHub <[email protected]>2021-08-11 17:49:33 +0200
commit65d0afac77d33b4de57fbfb4a7d664817377e59e (patch)
tree291d09740acfcf457856c0b710d6274b7498177d
parentMerge pull request #1738 from python-discord/dynamic-dormant-message (diff)
parentRemove added punctuation from reminder (diff)
Merge pull request #1740 from python-discord/TizzySaurus-patch-1
Remove added punctuation from reminder
-rw-r--r--bot/exts/utils/reminders.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utils/reminders.py b/bot/exts/utils/reminders.py
index 7b8c5c4b3..441b0353f 100644
--- a/bot/exts/utils/reminders.py
+++ b/bot/exts/utils/reminders.py
@@ -181,7 +181,7 @@ class Reminders(Cog):
)
# Let's not use a codeblock to keep emojis and mentions working. Embeds are safe anyway.
- embed.description = f"Here's your reminder: {reminder['content']}."
+ embed.description = f"Here's your reminder: {reminder['content']}"
if reminder.get("jump_url"): # keep backward compatibility
embed.description += f"\n[Jump back to when you created the reminder]({reminder['jump_url']})"