From ffd395f0490ae1a4f0d4fdeb3adddef4355b8c15 Mon Sep 17 00:00:00 2001 From: deflax Date: Wed, 17 Jan 2024 05:52:24 +0200 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 5ab095e..9ba0f34 100644 --- a/src/discordbot/discordbot.py +++ b/src/discordbot/discordbot.py @@ -57,7 +57,7 @@ async def epg(ctx): item_name = value['name'] item_start = value['start_at'] if item_start != 'now' and item_start != 'never': - epg_list += f'{item_name} starts at {item_start}h UTC\n') + epg_list += f'{item_name} starts at {item_start}h UTC\n' await ctx.channel.send(f'``` {epg_list} ```') else: await ctx.channel.send('Empty database!')