From 1ae4482092d358206f863f049c3176e068db8032 Mon Sep 17 00:00:00 2001 From: deflax Date: Wed, 17 Jan 2024 05:53:57 +0200 Subject: [PATCH] reformat epg list --- src/discordbot/discordbot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/discordbot/discordbot.py b/src/discordbot/discordbot.py index 9ba0f34..3582ebc 100644 --- a/src/discordbot/discordbot.py +++ b/src/discordbot/discordbot.py @@ -57,8 +57,8 @@ 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' - await ctx.channel.send(f'``` {epg_list} ```') + epg_list += f'- {item_name} starts at {item_start}:00 UTC\n' + await ctx.channel.send(f'```{epg_list}```') else: await ctx.channel.send('Empty database!')