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!')