diff options
Diffstat (limited to 'src/cogs/archive.py')
-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 |