diff --git a/openlp.pyw b/openlp.pyw index 6741cd1f6..203137e1f 100755 --- a/openlp.pyw +++ b/openlp.pyw @@ -35,7 +35,7 @@ from openlp.core.resources import qInitResources from openlp.core.ui import MainWindow, SplashScreen from openlp.core.utils import ConfigHelper -log = logging.getLogger(__name__) +log = logging.getLogger() class OpenLP(QtGui.QApplication): """ diff --git a/openlp/plugins/bibles/lib/manager.py b/openlp/plugins/bibles/lib/manager.py index 5fd20b4af..c0ff932a4 100644 --- a/openlp/plugins/bibles/lib/manager.py +++ b/openlp/plugins/bibles/lib/manager.py @@ -294,10 +294,8 @@ class BibleManager(object): book, chapter) if count == 0: text = self.get_verse_text(bible, book, chapter, chapter, 1, 1) - print text count = self.bible_db_cache[bible].get_max_bible_book_verses( book, chapter) - print count return count else: return self.bible_db_cache[bible].get_max_bible_book_verses( diff --git a/openlp/plugins/bibles/lib/mediaitem.py b/openlp/plugins/bibles/lib/mediaitem.py index 1526c49ac..462e3c34a 100644 --- a/openlp/plugins/bibles/lib/mediaitem.py +++ b/openlp/plugins/bibles/lib/mediaitem.py @@ -451,7 +451,6 @@ class BibleMediaItem(MediaManagerItem): def initialiseChapterVerse(self, bible, book, chapters): log.debug(u'initialiseChapterVerse %s, %s', bible, book) - print bible , book , chapters self.chapters_from = chapters self.verses = self.parent.biblemanager.get_book_verse_count(bible, book, 1)