From e4d6bc90bd25da1cbdc6cf43b331e3ed32acc6d2 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Thu, 8 Sep 2022 17:19:03 +0000 Subject: [PATCH] Fix serialized calendar --- divent/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/divent/bot.py b/divent/bot.py index e1ad5e6..070a16d 100644 --- a/divent/bot.py +++ b/divent/bot.py @@ -140,7 +140,7 @@ async def ical(guild_id: str): calendar.events.append(event) - return str(calendar) + return calendar.serialize() quart_task = client.loop.create_task(app.run_task("0.0.0.0"))