mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 09:03:07 +02:00
Fix #1070 (Publisher to Author Sort)
This commit is contained in:
parent
ca806a09c3
commit
b4e66e93a0
1 changed files with 1 additions and 1 deletions
|
|
@ -159,7 +159,7 @@ def get_metadata(self):
|
|||
publisher = unicode(self.publisher.text())
|
||||
if publisher:
|
||||
mi.publisher = publisher
|
||||
author_sort = unicode(self.publisher.text())
|
||||
author_sort = unicode(self.author_sort.text())
|
||||
if author_sort:
|
||||
mi.author_sort = author_sort
|
||||
comments = unicode(self.comment.toPlainText())
|
||||
|
|
|
|||
Loading…
Reference in a new issue