- fixed ticket 299

http://support.openlp.org/issues/299

bzr-revno: 1778
This commit is contained in:
Andreas Preikschat 2011-10-17 17:48:42 +01:00 committed by Tim Bentley
commit dd7af54411
2 changed files with 2 additions and 2 deletions

View File

@ -258,7 +258,7 @@ class EasiSlidesImport(SongImport):
verses[reg][vt][vn] = {}
if not verses[reg][vt][vn].has_key(inst):
verses[reg][vt][vn][inst] = []
words = self.tidy_text(line)
words = self.tidyText(line)
verses[reg][vt][vn][inst].append(words)
# done parsing

View File

@ -194,7 +194,7 @@ class SofImport(OooImport):
into line
"""
text = textportion.getString()
text = self.tidy_text(text)
text = self.tidyText(text)
if text.strip() == u'':
return text
if textportion.CharWeight == BOLD: