From 54991608d8211205f975947573574d397745e0b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=95=84=EB=A5=B4=ED=8E=98?= Date: Sun, 26 Nov 2023 18:28:43 +0900 Subject: [PATCH] fix: variable name --- exts/post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exts/post.py b/exts/post.py index 878680b..85e8394 100644 --- a/exts/post.py +++ b/exts/post.py @@ -33,7 +33,7 @@ async def setup(bot: Bot): if bot.config.start_time is not None: print("Waiting until time is coming") now = datetime.now() - while now.minute != bot.config.start: + while now.minute != bot.config.start_time: await asyncio.sleep(1) now = datetime.now() await cog._postLine.start()