openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #07391
[Merge] lp:~raoul-snyman/openlp/bibles-footer into lp:openlp
Raoul Snyman has proposed merging lp:~raoul-snyman/openlp/bibles-footer into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
For more details, see:
https://code.launchpad.net/~raoul-snyman/openlp/bibles-footer/+merge/54300
Fixed a small bug where multiple translations of verses showed up incorrectly in the footer.
--
https://code.launchpad.net/~raoul-snyman/openlp/bibles-footer/+merge/54300
Your team OpenLP Core is requested to review the proposed merge of lp:~raoul-snyman/openlp/bibles-footer into lp:openlp.
=== modified file 'openlp/plugins/bibles/lib/versereferencelist.py'
--- openlp/plugins/bibles/lib/versereferencelist.py 2011-03-20 20:50:19 +0000
+++ openlp/plugins/bibles/lib/versereferencelist.py 2011-03-22 06:53:28 +0000
@@ -71,7 +71,7 @@
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'],
Follow ups