diff --git a/program/utils.py b/program/utils.py
index 587e83db0e0ff2559b1bd79fa804b68ebcd206af..40bcb2ac00c2a7adf1bc1135e8db56e5d7ce25b8 100644
--- a/program/utils.py
+++ b/program/utils.py
@@ -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