Skip to content
Snippets Groups Projects
Commit 9971a04b authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

added automation ID to list

parent 88a5f600
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ def get_automation_id_choices():
with open(cached_shows, 'w') as cache:
cache.write(shows_json)
shows = [(s['id'], s['title']) for s in shows_list]
shows = [(s['id'], '%d | %s' % (s['id'], s['title'])) for s in shows_list]
return shows
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment