Fix #1264 (bug in lit-meta)

This commit is contained in:
Kovid Goyal 2008-11-13 15:29:12 -08:00
parent 12561e8306
commit c4a744bc9a

View File

@ -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'