mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-20 16:43:43 +00:00
Merge pull request #283 from WebSpider/dev-email_notify_order
Changing sorting order for email notification lists, closes enhancement request in #271
This commit is contained in:
commit
45f2d72314
1 changed files with 1 additions and 1 deletions
|
@ -2620,7 +2620,7 @@ class Home:
|
|||
cherrypy.response.headers['Cache-Control'] = "max-age=0,no-cache,no-store"
|
||||
|
||||
mydb = db.DBConnection()
|
||||
rows = mydb.select("SELECT show_id, show_name, notify_list FROM tv_shows")
|
||||
rows = mydb.select("SELECT show_id, show_name, notify_list FROM tv_shows ORDER BY show_name ASC")
|
||||
data = {}
|
||||
size = 0
|
||||
for r in rows:
|
||||
|
|
Loading…
Reference in a new issue