diff options
author | Parker <contact@pkrm.dev> | 2025-04-03 12:56:49 -0500 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2025-04-03 12:56:49 -0500 |
commit | a1e56b811663b3b0ab6831ed76b58b20d234fd42 (patch) | |
tree | 5a386c50f089b7f9d9077b01d978231534283192 /src | |
parent | 3c274d2f9c13f09a7d86a3d62f6b12249a8da3f3 (diff) |
Remove "]" in filename
Diffstat (limited to 'src')
-rw-r--r-- | src/cogs/archive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cogs/archive.py b/src/cogs/archive.py index 196eef8..5e80709 100644 --- a/src/cogs/archive.py +++ b/src/cogs/archive.py @@ -48,7 +48,7 @@ class Archive(commands.Cog): ) # Save the attachment - with open(f"images/{filename}]", "wb") as file: + with open(f"images/{filename}", "wb") as file: file.write(await response.read()) # Add the path to the attachments list |