diff --git a/examples/converters.py b/examples/converters.py index 877715d14..efd63edec 100644 --- a/examples/converters.py +++ b/examples/converters.py @@ -30,7 +30,7 @@ async def userinfo(ctx: commands.Context, user: discord.User): # and can do the following: user_id = user.id username = user.name - avatar = user.avatar.url + avatar = user.display_avatar.url await ctx.send(f'User found: {user_id} -- {username}\n{avatar}') @userinfo.error