From 285257eed523823bf4df09bf9a0590a62c7e5b63 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 15 Apr 2024 17:45:43 -0400 Subject: [PATCH] fix(pterodactyl): added an f string --- pterodactyl/pterodactyl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index a612e2d..43396dd 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -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: