forked from openlp/openlp
Try again
This commit is contained in:
parent
1f5d896fc1
commit
bb39617b3b
@ -199,8 +199,11 @@ class CCLIFileImport(SongImport):
|
|||||||
if len(author_list) < 2:
|
if len(author_list) < 2:
|
||||||
author_list = song_author.split(u'|')
|
author_list = song_author.split(u'|')
|
||||||
for author in author_list:
|
for author in author_list:
|
||||||
seperated = author.split(u',')
|
separated = author.split(u',')
|
||||||
self.add_author(u' '.join(seperated))
|
if len(separated) > 1:
|
||||||
|
self.add_author(u' '.join(reversed(separated)))
|
||||||
|
else:
|
||||||
|
self.add_author(author)
|
||||||
self.title = song_name
|
self.title = song_name
|
||||||
self.copyright = song_copyright
|
self.copyright = song_copyright
|
||||||
self.ccli_number = song_ccli
|
self.ccli_number = song_ccli
|
||||||
|
Loading…
Reference in New Issue
Block a user