mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 16:43:40 +02:00
Fix #1264 (bug in lit-meta)
This commit is contained in:
parent
12561e8306
commit
c4a744bc9a
1 changed files with 1 additions and 1 deletions
|
|
@ -253,7 +253,7 @@ def __unicode__(self):
|
|||
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…
Reference in a new issue