forgot one

This commit is contained in:
Mattias Põldaru 2011-02-16 11:43:07 +02:00
parent 7e18b8e3e6
commit 31fbb999f9
1 changed files with 5 additions and 6 deletions

View File

@ -261,12 +261,11 @@ class OpenSongImport(SongImport):
verses[vt][vn] = {} verses[vt][vn] = {}
if not verses[vt][vn].has_key(inst): if not verses[vt][vn].has_key(inst):
verses[vt][vn][inst] = [] verses[vt][vn][inst] = []
if words: # Tidy text and remove the ____s from extended words
# Tidy text and remove the ____s from extended words thisline = self.tidy_text(thisline)
thisline = self.tidy_text(thisline) thisline = thisline.replace(u'_', u'')
thisline = thisline.replace(u'_', u'') thisline = thisline.replace(u'|', u'\n')
thisline = thisline.replace(u'|', u'\n') verses[vt][vn][inst].append(thisline)
verses[vt][vn][inst].append(thisline)
# done parsing # done parsing
# add verses in original order # add verses in original order
for (vt, vn, inst) in our_verse_order: for (vt, vn, inst) in our_verse_order: