From e4bf0d8b254c9dfb31253bbe9610acfc4dfae3fc Mon Sep 17 00:00:00 2001 From: Elmon11 Date: Sat, 31 Oct 2020 03:03:39 +0100 Subject: [PATCH] Update help.py --- commands/help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/help.py b/commands/help.py index 9953d6a..2933336 100644 --- a/commands/help.py +++ b/commands/help.py @@ -48,7 +48,7 @@ class Help(commands.Cog): command_list += f'**{ctx.prefix}{command.name}** - {command.help}\n' if command_list: em.add_field(name=cog, value=command_list, inline=False) - em.set_footer(text=f'Requested by {ctx.message.author}', icon_url=tget_avatar(ctx.message.author)) + em.set_footer(text=f'Requested by {ctx.message.author}', icon_url=get_avatar(ctx.message.author)) await ctx.send(embed=em) def setup(bot):