From 0aa810fd9e2b9c8c52d9350a681d8f88a2049a74 Mon Sep 17 00:00:00 2001 From: deflax Date: Wed, 17 Jan 2024 05:57:07 +0200 Subject: [PATCH] fix variable --- 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 ee92e2a..4e5786c 100644 --- a/src/discordbot/discordbot.py +++ b/src/discordbot/discordbot.py @@ -58,7 +58,7 @@ async def epg(ctx): item_name = value['name'] item_start = value['start_at'] if item_start != 'now' and item_start != 'never': - scheduled += f'- {item_name} starts at {item_start}:00 UTC\n' + scheduled_list += f'- {item_name} starts at {item_start}:00 UTC\n' else: live_list += f'- {item_name} is LIVE\n' epg_list = live_list + scheduled_list