opps.. forgot the %s

This commit is contained in:
Andreas Preikschat 2010-09-01 21:22:55 +02:00
parent b21e164fd3
commit cadfefe616
1 changed files with 2 additions and 2 deletions

View File

@ -510,12 +510,12 @@ class BibleMediaItem(MediaManagerItem):
'dual_permission')
dual_text = self._decodeQtObject(reference, 'dual_text')
verse_text = self.formatVerse(old_chapter, chapter, verse)
footer = u'%s (%s %s)' % (book, version, copyright, permission)
footer = u'%s (%s %s %s)' % (book, version, copyright, permission)
if footer not in raw_footer:
raw_footer.append(footer)
if has_dual_bible:
if dual_bible:
footer = u'%s (%s %s)' % (book, dual_version,
footer = u'%s (%s %s %s)' % (book, dual_version,
dual_copyright, dual_permission)
if footer not in raw_footer:
raw_footer.append(footer)