fix variable
This commit is contained in:
parent
f4dc5c9c95
commit
0aa810fd9e
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ async def epg(ctx):
|
||||||
item_name = value['name']
|
item_name = value['name']
|
||||||
item_start = value['start_at']
|
item_start = value['start_at']
|
||||||
if item_start != 'now' and item_start != 'never':
|
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:
|
else:
|
||||||
live_list += f'- {item_name} is LIVE\n'
|
live_list += f'- {item_name} is LIVE\n'
|
||||||
epg_list = live_list + scheduled_list
|
epg_list = live_list + scheduled_list
|
||||||
|
|
Loading…
Reference in a new issue