From 14b8d33494ecceae9f65315db5dbd55c38e0b1d8 Mon Sep 17 00:00:00 2001 From: phixxy Date: Sun, 16 Jul 2023 23:28:59 -0700 Subject: [PATCH] Fixed bug in moderate --- sparkytron3000.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sparkytron3000.py b/sparkytron3000.py index dfac323..7a232a5 100644 --- a/sparkytron3000.py +++ b/sparkytron3000.py @@ -55,7 +55,7 @@ bot = commands.Bot(command_prefix='!', intents=intents) brief="Moderation Tools" ) async def moderate(ctx, filename): - await upload_ftp("blank_image.png", os.getenv('ftp_ai_webpage'), filename) + await upload_ftp("blank_image.png", os.getenv('ftp_ai_images'), filename) output = "Image " + filename + " replaced" await ctx.send(output)