diff options
Diffstat (limited to 'bot')
| -rw-r--r-- | bot/seasons/pride/pride_avatar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/pride/pride_avatar.py b/bot/seasons/pride/pride_avatar.py index b5038f02..e89f136b 100644 --- a/bot/seasons/pride/pride_avatar.py +++ b/bot/seasons/pride/pride_avatar.py @@ -101,7 +101,7 @@ class PrideAvatar(commands.Cog): async with ctx.typing(): # Get avatar bytes - image_bytes = ctx.author.avatar_url.read() + image_bytes = await ctx.author.avatar_url.read() avatar = Image.open(BytesIO(image_bytes)) avatar = avatar.convert("RGBA").resize((1024, 1024)) |