diff options
| author | 2021-08-22 11:06:38 +0200 | |
|---|---|---|
| committer | 2021-08-22 11:06:38 +0200 | |
| commit | 7e8d24f88eb199dc6ba790816d4abaa3269144e0 (patch) | |
| tree | 2349cd55caf7cced8355c1a4f6d8fa0b2f2eb6df | |
| parent | Provide jump_url in reminders even when the bot replies (diff) | |
Modify reminder response messages to be in the correct format
| -rw-r--r-- | bot/exts/utils/reminders.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/utils/reminders.py b/bot/exts/utils/reminders.py index 03c7d0323..f0aa280b6 100644 --- a/bot/exts/utils/reminders.py +++ b/bot/exts/utils/reminders.py @@ -18,7 +18,7 @@ from bot.utils.checks import has_any_role_check, has_no_roles_check from bot.utils.lock import lock_arg from bot.utils.messages import send_denial from bot.utils.scheduling import Scheduler -from bot.utils.time import TimestampFormats, discord_timestamp, time_since +from bot.utils.time import TimestampFormats, discord_timestamp log = logging.getLogger(__name__) @@ -177,7 +177,7 @@ class Reminders(Cog): embed.colour = discord.Colour.red() embed.set_author( icon_url=Icons.remind_red, - name=f"Sorry it should have arrived {time_since(expected_time)} !" + name="Sorry, your reminder should have arrived earlier!" ) else: embed.colour = discord.Colour.blurple() |