Fix CCLI author import

bzr-revno: 1315
This commit is contained in:
Jon Tibble 2011-02-19 21:09:23 +00:00
commit 0bd305a8f9
1 changed files with 5 additions and 2 deletions

View File

@ -199,8 +199,11 @@ class CCLIFileImport(SongImport):
if len(author_list) < 2:
author_list = song_author.split(u'|')
for author in author_list:
seperated = author.split(u',')
self.add_author(seperated[1].strip() + u' ' + seperated[0].strip())
separated = author.split(u',')
if len(separated) > 1:
self.add_author(u' '.join(reversed(separated)))
else:
self.add_author(author)
self.title = song_name
self.copyright = song_copyright
self.ccli_number = song_ccli