0001888: Traceback when trying to delete a book report with non-ascii characters in the name.

svn: r10279
This commit is contained in:
Brian Matherly 2008-03-12 02:51:16 +00:00
parent 3a561ab078
commit 3f8c9a2bd6

View File

@ -643,7 +643,7 @@ class BookListDisplay:
if not the_iter:
return
data = self.blist.get_data(the_iter, [0])
self.booklist.delete_book(data[0])
self.booklist.delete_book(unicode(data[0]))
self.blist.remove(the_iter)
self.top.run()