mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-07 10:14:46 -04:00
Fix #1264 (bug in lit-meta)
This commit is contained in:
parent
12561e8306
commit
c4a744bc9a
@ -253,7 +253,7 @@ class MetaInformation(object):
|
||||
ans += ((' [' + self.author_sort + ']') if self.author_sort else '') + u'\n'
|
||||
if self.publisher:
|
||||
ans += u'Publisher: '+ unicode(self.publisher) + u'\n'
|
||||
if self.book_producer:
|
||||
if getattr(self, 'book_producer', False):
|
||||
ans += u'Producer : '+ unicode(self.book_producer) + u'\n'
|
||||
if self.category:
|
||||
ans += u'Category : ' + unicode(self.category) + u'\n'
|
||||
|
Loading…
x
Reference in New Issue
Block a user