1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-11-14 22:22:18 +00:00

fixed incorrect sort order of indexes in getArtists

This commit is contained in:
Emory P 2014-02-05 00:36:59 -05:00
parent f313ff5369
commit 06b862f5c3

View File

@ -136,7 +136,7 @@ def list_artists():
'name': a.name,
'albumCount': a.albums
} for a in v ]
} for k, v in indexes.iteritems() ]
} for k, v in sorted(indexes.iteritems()) ]
}
})