From 0f5532a14ac12b20f18209e2256e184e068f17d6 Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Wed, 12 Feb 2025 15:29:11 -0500 Subject: [PATCH] refactor(commands/voice/queue): remove extra bold from queue error --- commands/voice/queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/voice/queue.py b/commands/voice/queue.py index 863f042..1ef28c1 100644 --- a/commands/voice/queue.py +++ b/commands/voice/queue.py @@ -159,7 +159,7 @@ async def queue_or_play(message, edited=False): ) player.volume = float(args.volume) / 100.0 except Exception as e: - await utils.reply(message, f"**failed to queue:** `{e}`") + await utils.reply(message, f"failed to queue: `{e}`") return queued = audio.queue.Song(player, message)