Fix CCLI author import

This commit is contained in:
Jon Tibble 2011-02-19 19:49:08 +00:00
parent 53e5477eef
commit 1f5d896fc1

View File

@ -200,7 +200,7 @@ class CCLIFileImport(SongImport):
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())
self.add_author(u' '.join(seperated))
self.title = song_name
self.copyright = song_copyright
self.ccli_number = song_ccli