Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Sep 24, 2013
1 parent e143dc6 commit 4518d78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/calibre/library/server/browse.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ def browse_category(self, category, sort):

# Now do the category items
vls = self.db.prefs.get('virtual_libraries', {})
categories['virt_libs'] = sorted([Tag(k) for k, v in vls.iteritems()], key=lambda x:x.name)
categories['virt_libs'] = sorted([Tag(k) for k, v in vls.iteritems()], key=lambda x:sort_key(x.name))
items = categories[category]

sort = self.browse_sort_categories(items, sort)
Expand Down

0 comments on commit 4518d78

Please sign in to comment.