diff --git a/src/plugins/BookReport.py b/src/plugins/BookReport.py index e32efbabb..e9b300536 100644 --- a/src/plugins/BookReport.py +++ b/src/plugins/BookReport.py @@ -412,8 +412,8 @@ class BookList(object): return self.bookmap[name] def get_book_names(self): - "Return a list of all the book names in the BookList" - return self.bookmap.keys() + "Return a list of all the book names in the BookList, sorted" + return sorted(self.bookmap.keys()) def set_book(self, name, book): """