Skip to content

Commit 61c94cd

Browse files
committed
Prevent "issue" with number of days
1 parent 6a03cbc commit 61c94cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/bot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ async def on_add_checkmark_reaction(self, reaction: RawReactionActionEvent) -> N
121121

122122
message = await channel.send(
123123
f"Hey {role.mention} 👋 the next monthly meeting will happen "
124-
f"{meeting_notification.date.humanize()} 📅\n"
124+
"in a few days 📅\n"
125125
f"Realtime notes will be posted here: {NOTES_LINK}.\n\n"
126126
"Feel free to add any topics you'd like to discuss in the meeting! 🍓",
127127
embed=embed,

src/meeting.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ async def find_next_event_and_notify_core_team(client: nextcord.Client):
6666

6767
message = await channel.send(
6868
"Hey @everyone 👋 the next monthly meeting will happen "
69-
f"{start.humanize()} 📅\n"
69+
f"in a few days 📅\n"
7070
f"Make sure you update the note doc here: {NOTES_LINK}.\n\n"
7171
"When ready, react with ✅ to send a notification in the general channel! 🍓",
7272
embed=embed,

0 commit comments

Comments
 (0)