Fix the f-string syntaxerror
This commit is contained in:
parent
c5868750b4
commit
c00c4dedff
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue