Fix the f-string syntaxerror

This commit is contained in:
deflax 2025-02-05 22:33:23 +00:00
parent c5868750b4
commit c00c4dedff

View file

@ -54,7 +54,7 @@ async def hello(ctx):
async def hello_error(ctx, error):
if isinstance(error, CheckFailure):
author_name = ctx.author.name
await ctx.channel.send(f'do I know you, `{}`?')
await ctx.channel.send(f'do I know you, `{author_name}`?')
@bot.command(name='epg', help='Lists scheduled streams')
async def epg(ctx):