From ce67e95ff7075738f57dff3d5cf31d56ff149e30 Mon Sep 17 00:00:00 2001 From: Erik Lundin Date: Mon, 8 Oct 2012 22:16:54 +0200 Subject: [PATCH] Removed unnecessary line break --- openlp/plugins/bibles/lib/manager.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/openlp/plugins/bibles/lib/manager.py b/openlp/plugins/bibles/lib/manager.py index 6f9a6aa07..467f7c90a 100644 --- a/openlp/plugins/bibles/lib/manager.py +++ b/openlp/plugins/bibles/lib/manager.py @@ -278,8 +278,7 @@ class BibleManager(object): log.debug(u'BibleManager.get_verse_count("%s", "%s", %s)', bible, book, chapter) language_selection = self.get_language_selection(bible) - book_ref_id = self.db_cache[bible]. \ - get_book_ref_id_by_localised_name( + book_ref_id = self.db_cache[bible].get_book_ref_id_by_localised_name( book, language_selection) return self.db_cache[bible].get_verse_count(book_ref_id, chapter)