fix(pterodactyl): added an f string
This commit is contained in:
parent
2b7f320d2a
commit
285257eed5
1 changed files with 1 additions and 1 deletions
|
@ -560,7 +560,7 @@ class Pterodactyl(commands.Cog):
|
||||||
await view.wait()
|
await view.wait()
|
||||||
if view.result is True:
|
if view.result is True:
|
||||||
del blacklist[name]
|
del blacklist[name]
|
||||||
await msg.edit(content="Removed `{name}` from the regex blacklist.")
|
await msg.edit(content=f"Removed `{name}` from the regex blacklist.")
|
||||||
else:
|
else:
|
||||||
await msg.edit(content="Cancelled.")
|
await msg.edit(content="Cancelled.")
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue