Fix an issue with songbeamer import where chords were pushed a line.

This commit is contained in:
Tomas Groth 2017-04-11 10:43:45 +02:00
parent 111cff72a1
commit c97aaab763
1 changed files with 2 additions and 0 deletions

View File

@ -157,7 +157,9 @@ class SongBeamerImport(SongImport):
if verse_start:
verse_start = False
if not self.check_verse_marks(line):
line = self.insert_chords(line_number, line)
self.current_verse += line.strip() + '\n'
line_number += 1
else:
line = self.insert_chords(line_number, line)
self.current_verse += line.strip() + '\n'