From 9b425cb52daea8faaf711f31305e0d5daa1dfe71 Mon Sep 17 00:00:00 2001 From: Jon Tibble Date: Fri, 23 Jul 2010 17:21:27 +0100 Subject: [PATCH] Fix BibleGateway refactor --- openlp/plugins/bibles/lib/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/plugins/bibles/lib/http.py b/openlp/plugins/bibles/lib/http.py index c262a0619..80beb179d 100644 --- a/openlp/plugins/bibles/lib/http.py +++ b/openlp/plugins/bibles/lib/http.py @@ -211,7 +211,7 @@ class BGExtract(BibleCommon): for verse in verses: if verse.sup: verse_list[int(str(verse.sup.contents[0]))] = \ - unicode(verse.contents[2]) + unicode(verse.contents[-1]) return SearchResults(bookname, chapter, verse_list) class CWExtract(BibleCommon):