Import Song Book Number correctly from OpenLyrics files

bzr-revno: 1642
This commit is contained in:
Simon Scudder 2011-06-18 09:54:34 +01:00 committed by Jonathan Corwin
commit 18d6f4f9b9
1 changed files with 1 additions and 2 deletions

View File

@ -527,8 +527,7 @@ class OpenLyrics(object):
book = Book.populate(name=bookname, publisher=u'')
self.manager.save_object(book)
song.song_book_id = book.id
if hasattr(songbook, u'entry'):
song.song_number = self._get(songbook, u'entry')
song.song_number = self._get(songbook, u'entry')
# We only support one song book, so take the first one.
break