From 0a0a87078b516edccbcaf318710cad7cd26e096f Mon Sep 17 00:00:00 2001 From: suutari-olli Date: Sat, 21 May 2016 01:02:40 +0300 Subject: [PATCH] - Removed the unrequired %s complications from "No Bibles installed" --- openlp/plugins/bibles/lib/manager.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openlp/plugins/bibles/lib/manager.py b/openlp/plugins/bibles/lib/manager.py index ad6ae6ca4..11a6e48b3 100644 --- a/openlp/plugins/bibles/lib/manager.py +++ b/openlp/plugins/bibles/lib/manager.py @@ -269,8 +269,8 @@ class BibleManager(RegistryProperties): if not bible: if show_error: self.main_window.information_message( - ('%s' % UiStrings().BibleNoBiblesTitle), - ('%s' % UiStrings().BibleNoBibles)) + UiStrings().BibleNoBiblesTitle, + UiStrings().BibleNoBibles) return None # Get the language for books. language_selection = self.get_language_selection(bible) @@ -313,8 +313,8 @@ class BibleManager(RegistryProperties): # If no bibles are installed, message is given. if not bible: self.main_window.information_message( - ('%s' % UiStrings().BibleNoBiblesTitle), - ('%s' % UiStrings().BibleNoBibles)) + UiStrings().BibleNoBiblesTitle, + UiStrings().BibleNoBibles) return None # Check if the bible or second_bible is a web bible. web_bible = self.db_cache[bible].get_object(BibleMeta, 'download_source')