forked from openlp/openlp
Make Based on Psalm an automatic comment, do not automatically make Authors type Word
This commit is contained in:
parent
c3eecd04d9
commit
8a6e6f767f
@ -137,9 +137,9 @@ class SingingTheFaithImport(SongImport):
|
|||||||
elif hint == 'Ignore':
|
elif hint == 'Ignore':
|
||||||
continue
|
continue
|
||||||
elif hint == 'Author':
|
elif hint == 'Author':
|
||||||
# add as a raw author - do not split and make them a words author
|
# add as a raw author - do not split
|
||||||
line.strip()
|
line.strip()
|
||||||
self.add_author(line, 'words')
|
self.add_author(line)
|
||||||
line_number += 1
|
line_number += 1
|
||||||
next(file)
|
next(file)
|
||||||
continue
|
continue
|
||||||
@ -222,7 +222,7 @@ class SingingTheFaithImport(SongImport):
|
|||||||
copyright = line
|
copyright = line
|
||||||
continue
|
continue
|
||||||
elif (line.startswith('Liturgical ') or line.startswith('From The ') or
|
elif (line.startswith('Liturgical ') or line.startswith('From The ') or
|
||||||
line.startswith('From Common ')):
|
line.startswith('From Common ') or line.startsith('Based on Psalm ')):
|
||||||
self.add_comment(line)
|
self.add_comment(line)
|
||||||
continue
|
continue
|
||||||
# If indent is 0 it may be the author, unless it was one of the cases covered above
|
# If indent is 0 it may be the author, unless it was one of the cases covered above
|
||||||
|
Loading…
Reference in New Issue
Block a user