From d217309e74e01cc2d015e3e062514abe34f5a2f5 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Fri, 25 Aug 2023 12:51:58 +1000 Subject: [PATCH] bot: Fixed check if site ready function args --- discord-bot/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord-bot/bot.py b/discord-bot/bot.py index ce9d578..3413083 100644 --- a/discord-bot/bot.py +++ b/discord-bot/bot.py @@ -76,7 +76,7 @@ async def createsite(ctx, domain: str, licence: str): ready = False while ready == False: - ready = await check_site_ready(domain,ctx.user.id) + ready = await check_site_ready(domain) if ready == False: await asyncio.sleep(30)