openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #02769
[Merge] lp:~raoul-snyman/openlp/bug-fixes into lp:openlp
Raoul Snyman has proposed merging lp:~raoul-snyman/openlp/bug-fixes into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
Small bug fix for the Bibles.
--
https://code.launchpad.net/~raoul-snyman/openlp/bug-fixes/+merge/30915
Your team OpenLP Core is requested to review the proposed merge of lp:~raoul-snyman/openlp/bug-fixes into lp:openlp.
=== modified file 'openlp/plugins/bibles/lib/mediaitem.py'
--- openlp/plugins/bibles/lib/mediaitem.py 2010-07-24 22:10:47 +0000
+++ openlp/plugins/bibles/lib/mediaitem.py 2010-07-26 06:23:49 +0000
@@ -519,7 +519,7 @@
#permission = self._decodeQtObject(reference, 'permission')
if self.parent.settings_tab.display_style == 1:
verse_text = self.formatVerse(old_chapter, chapter, verse,
- u'(u', u')')
+ u'(', u')')
elif self.parent.settings_tab.display_style == 2:
verse_text = self.formatVerse(old_chapter, chapter, verse,
u'{', u'}')
@@ -659,4 +659,4 @@
def searchByReference(self, bible, search):
log.debug(u'searchByReference %s, %s', bible, search)
- self.search_results = self.parent.manager.get_verses(bible, search)
\ No newline at end of file
+ self.search_results = self.parent.manager.get_verses(bible, search)
Follow ups