forked from openlp/openlp
change logic round due to name change
This commit is contained in:
parent
f880816434
commit
1cde5f146d
@ -224,7 +224,7 @@ class FoilPresenter(object):
|
||||
song.search_lyrics = u''
|
||||
song.verse_order = u''
|
||||
song.search_title = u''
|
||||
self.save_song = False
|
||||
self.save_song = True
|
||||
# Because "text" seems to be an reserved word, we have to recompile it.
|
||||
xml = re.compile(u'<text>').sub(u'<text_>', xml)
|
||||
xml = re.compile(u'</text>').sub(u'</text_>', xml)
|
||||
@ -238,7 +238,7 @@ class FoilPresenter(object):
|
||||
self._process_authors(song_xml, song)
|
||||
self._process_songbooks(song_xml, song)
|
||||
self._process_topics(song_xml, song)
|
||||
if not self.save_song:
|
||||
if self.save_song:
|
||||
clean_song(self.manager, song)
|
||||
self.manager.save_object(song)
|
||||
|
||||
@ -427,7 +427,7 @@ class FoilPresenter(object):
|
||||
self.importer.logError(self._child(foilpresenterfolie.titel),
|
||||
unicode(translate('SongsPlugin.FoilPresenterSongImport',
|
||||
'Invalid Foilpresenter song file. No verses found.')))
|
||||
self.save_song = True
|
||||
self.save_song = False
|
||||
return
|
||||
for strophe in foilpresenterfolie.strophen.strophe:
|
||||
text = self._child(strophe.text_) if hasattr(strophe, u'text_') else u''
|
||||
|
Loading…
Reference in New Issue
Block a user