diff options
author | 2021-08-23 08:25:18 +0100 | |
---|---|---|
committer | 2021-08-23 07:25:18 +0000 | |
commit | a831aa011821254387bf079795ecd21b3439051a (patch) | |
tree | f804447fd547c5a6e0d7406d70e91cf1b9c425ec | |
parent | Merge pull request #1762 from python-discord/metabase-sharing (diff) |
Update time format in reminder message to DAY_TIME from RELATIVE (#1766)
* Update time format in reminder message to DAY_TIME from RELATIVE
Co-authored-by: Xithrius <[email protected]>
-rw-r--r-- | bot/exts/utils/reminders.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utils/reminders.py b/bot/exts/utils/reminders.py index cc13f6ebe..2e60f5030 100644 --- a/bot/exts/utils/reminders.py +++ b/bot/exts/utils/reminders.py @@ -270,7 +270,7 @@ class Reminders(Cog): } ) - mention_string = f"Your reminder will arrive {discord_timestamp(expiration, TimestampFormats.RELATIVE)}" + mention_string = f"Your reminder will arrive on {discord_timestamp(expiration, TimestampFormats.DAY_TIME)}" if mentions: mention_string += f" and will mention {len(mentions)} other(s)" |