Skip to content

Commit

Permalink
Update image formats listed as supported by set bot avatar (#6323)
Browse files Browse the repository at this point in the history
Co-authored-by: Jakub Kuczys <me@jacken.men>
  • Loading branch information
karlsbjorn and Jackenmen committed Mar 23, 2024
1 parent a26b9d6 commit c3b96b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions redbot/core/core_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -2889,11 +2889,11 @@ async def _set_bot_avatar(self, ctx: commands.Context, url: str = None):
_(
"Failed. Remember that you can edit my avatar "
"up to two times a hour. The URL or attachment "
"must be a valid image in either JPG or PNG format."
"must be a valid image in either JPG, PNG, or GIF format."
)
)
except ValueError:
await ctx.send(_("JPG / PNG format only."))
await ctx.send(_("JPG / PNG / GIF format only."))
else:
await ctx.send(_("Done."))

Expand Down

0 comments on commit c3b96b7

Please sign in to comment.