From d2a8c3d596fa389e4e5c356a0cbe898490e87d6b Mon Sep 17 00:00:00 2001 From: "Seraphim R.P" Date: Wed, 24 Jun 2020 14:37:48 -0400 Subject: [PATCH] Update bot.py --- src/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bot.py b/src/bot.py index 17f2dc3..c7eae87 100644 --- a/src/bot.py +++ b/src/bot.py @@ -65,7 +65,7 @@ class OrthoBot(discord.AutoShardedClient): for item in results: if "channel" in item and "time" in item: - channel = self.fetch_channel(int(item["channel"])) + channel = await self.fetch_channel(int(item["channel"])) daily_time = item["time"] current_time = datetime.datetime.utcnow().strftime("%H:%M")