From 66a7f5f3bc3872781be17b55011529ef8a02a154 Mon Sep 17 00:00:00 2001 From: deflax Date: Sat, 8 Feb 2025 03:58:21 +0000 Subject: [PATCH] fix a typo --- src/discordbot/discordbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/discordbot/discordbot.py b/src/discordbot/discordbot.py index 466eab8..e6cc3d3 100644 --- a/src/discordbot/discordbot.py +++ b/src/discordbot/discordbot.py @@ -90,7 +90,7 @@ async def now(ctx): playhead = await query_playhead() stream_name = playhead['name'] stream_prio = playhead['prio'] - await ctx.channel.send(f'Now playing {stream_name})') + await ctx.channel.send(f'Now playing {stream_name}') @bot.command(name='rec', help='Start the recorder') @has_role(boss_role_name)