fix: Loging concatenation of int
All checks were successful
Build Docker / Build Docker (push) Successful in 26s

This commit is contained in:
Nathan Woodburn 2024-02-20 12:21:03 +11:00
parent d6d36c8722
commit 9c9a3498a4
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

2
bot.py
View File

@ -632,7 +632,7 @@ async def check_reminders():
try: try:
await channel.send(embed=tools.embed("Reminder", reminder['text'])) await channel.send(embed=tools.embed("Reminder", reminder['text']))
except: except:
await log("Channel not found: " + reminder['channel_id']) await log("Channel not found: " + str(reminder['channel_id']))
print("Reminder sent for "+str(reminder), flush=True) print("Reminder sent for "+str(reminder), flush=True)
reminders.remove(reminder) reminders.remove(reminder)