diff --git a/ChangeLog b/ChangeLog index 64dd72325..661c4af2d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2007-06-24 Brian Matherly + * src/plugins/BookReport.py (on_booklist_ok_clicked): Handle unicode names + 2007-06-24 Brian Matherly * src/docgen/OpenOfficeDoc.py (rotate_text, init): remove fill color to improve the fanchart display (#0001072) diff --git a/src/plugins/BookReport.py b/src/plugins/BookReport.py index 9e4b4a8de..0be39869e 100644 --- a/src/plugins/BookReport.py +++ b/src/plugins/BookReport.py @@ -542,7 +542,7 @@ class BookListDisplay: store,the_iter = self.blist.get_selected() if the_iter: data = self.blist.get_data(the_iter,[0]) - self.selection = self.booklist.get_book(data[0]) + self.selection = self.booklist.get_book(unicode(data[0])) if self.dosave: self.booklist.save()