From ccb2e8693c6d7b379a284b059fa0c58241f52b42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20P=C3=B5ldaru?= Date: Thu, 13 Jan 2011 12:54:36 +0200 Subject: [PATCH] more changes --- openlp/plugins/songs/lib/easislidesimport.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/openlp/plugins/songs/lib/easislidesimport.py b/openlp/plugins/songs/lib/easislidesimport.py index 435e2177f..736d85304 100644 --- a/openlp/plugins/songs/lib/easislidesimport.py +++ b/openlp/plugins/songs/lib/easislidesimport.py @@ -367,14 +367,14 @@ class EasiSlidesImport(SongImport): else: for tag in our_verse_order: if not tag[0] in verses: - log.info(u'Got order from our_verse_order %s but not in' - u'versetags, dropping this item from presentation order' - u'missing was versetag %s', tag, tag[0]) + #log.info(u'Got order from our_verse_order %s but not in' + # u'versetags, dropping this item from presentation order' + # u'missing was versetag %s', tag, tag[0]) continue if not tag[1] in verses[tag[0]]: - log.info(u'Got order from our_verse_order %s but not in' - u'versetags, dropping this item from presentation order' - u'missing was versenum %s for versetag %s', - tag, tag[1], tag[0]) + #log.info(u'Got order from our_verse_order %s but not in' + # u'versetags, dropping this item from presentation order' + # u'missing was versenum %s for versetag %s', + # tag, tag[1], tag[0]) continue self.verse_order_list.append(u'%s%s' % (tag[0], tag[1]))