From ebec935f3ea61e4db92faeb26fb8f6f88190bdab Mon Sep 17 00:00:00 2001 From: Charles Haley <> Date: Sun, 6 Jun 2010 21:43:45 +0100 Subject: [PATCH] Fix for bug #5725 -- changing title. The code tried to set title_sorter, which is a dynamic property. There is no reason to do this, as the property returns the title. --- src/calibre/gui2/library/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/calibre/gui2/library/models.py b/src/calibre/gui2/library/models.py index a1bb8d5a86..5bccfd7c0d 100644 --- a/src/calibre/gui2/library/models.py +++ b/src/calibre/gui2/library/models.py @@ -1089,7 +1089,6 @@ class DeviceBooksModel(BooksModel): # {{{ idx = self.map[row] if cname == 'title' : self.db[idx].title = val - self.db[idx].title_sorter = val elif cname == 'authors': self.db[idx].authors = string_to_authors(val) elif cname == 'collections':