fix(pterodactyl): added an f string

This commit is contained in:
Seaswimmer 2024-04-15 17:45:43 -04:00
parent 2b7f320d2a
commit 285257eed5
Signed by untrusted user: cswimr
GPG key ID: 5D671B5D03D65A7F

View file

@ -560,7 +560,7 @@ class Pterodactyl(commands.Cog):
await view.wait()
if view.result is True:
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:
await msg.edit(content="Cancelled.")
else: