Merge w/ trunk

This commit is contained in:
Chris Hill 2016-04-03 11:58:35 +01:00
parent 38c9ed1fd0
commit efb71b4f31
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ class SongMediaItem(MediaManagerItem):
"""
log.debug('display results Author')
self.list_view.clear()
search_results = sorted(search_results, key=lambda author: (get_natural_key(author.display_name)))
search_results = sorted(search_results, key=lambda author: get_natural_key(author.display_name))
for author in search_results:
songs = sorted(author.songs, key=lambda song: song.sort_key)
for song in songs: