Bug 625997

This commit is contained in:
Tim Bentley 2010-09-03 19:24:11 +01:00
parent b24467d32c
commit da88990549
1 changed files with 3 additions and 1 deletions

View File

@ -136,6 +136,7 @@ class Renderer(object):
line_end = u''
if line_break:
line_end = u'<br>'
print words
words = words.replace(u'\r\n', u'\n')
verses_text = words.split(u'\n')
text = []
@ -175,10 +176,11 @@ class Renderer(object):
# Text too long so gone to next mage
if layout.pageCount() != 1:
formatted.append(shell % old_html_text)
temp_text = line
temp_text = line + line_end
old_html_text = temp_text
formatted.append(shell % old_html_text)
log.debug(u'format_slide - End')
print formatted
return formatted
def _generate_background_frame(self):