forked from openlp/openlp
Fixed a small bug where multiple translations of verses showed up incorrectly in the footer.
bzr-revno: 1415
This commit is contained in:
commit
b5eee3202c
@ -71,7 +71,7 @@ class VerseReferenceList(object):
|
||||
continue
|
||||
prev = index - 1
|
||||
if self.verse_list[prev][u'version'] != verse[u'version']:
|
||||
result = u'%s (%s)' % (result, verse[u'version'])
|
||||
result = u'%s (%s)' % (result, self.verse_list[prev][u'version'])
|
||||
result = result + u', '
|
||||
if self.verse_list[prev][u'book'] != verse[u'book']:
|
||||
result = u'%s%s %s:' % (result, verse[u'book'],
|
||||
|
Loading…
Reference in New Issue
Block a user