From 31b2cef99fa926c2c38223f56f6565c140fcd17a Mon Sep 17 00:00:00 2001 From: phixxy Date: Thu, 25 Jan 2024 01:41:08 -0800 Subject: [PATCH] added logs folder maker --- sparkytron3000.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sparkytron3000.py b/sparkytron3000.py index 163944a..f15095d 100644 --- a/sparkytron3000.py +++ b/sparkytron3000.py @@ -17,7 +17,7 @@ intents.message_content = True bot = commands.Bot(command_prefix='!', intents=intents) async def folder_setup(): - folder_names = ["tmp", "extensions", "data"] + folder_names = ["tmp", "extensions", "data", "logs"] for folder_name in folder_names: if not os.path.exists(folder_name): os.mkdir(folder_name)