Remove "]" in filename

This commit is contained in:
Parker M. 2025-04-03 12:56:49 -05:00
parent 3c274d2f9c
commit a1e56b8116
Signed by: parker
GPG Key ID: 505ED36FC12B5D5E

View File

@ -48,7 +48,7 @@ class Archive(commands.Cog):
) )
# Save the attachment # Save the attachment
with open(f"images/{filename}]", "wb") as file: with open(f"images/{filename}", "wb") as file:
file.write(await response.read()) file.write(await response.read())
# Add the path to the attachments list # Add the path to the attachments list