From 67ab01df01a9c4d5573bd76fa82afd31cce1c5b9 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Thu, 22 Oct 2009 20:07:32 +0100 Subject: [PATCH] Minor corrections --- openlp/core/lib/renderer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/lib/renderer.py b/openlp/core/lib/renderer.py index 91a95cddc..2e3180860 100644 --- a/openlp/core/lib/renderer.py +++ b/openlp/core/lib/renderer.py @@ -173,7 +173,6 @@ class Renderer(object): page = [] split_lines = [] for line in text: - split = False #Must be a blank line so keep it. if len(line) == 0: line = u' ' @@ -197,6 +196,7 @@ class Renderer(object): split_text = line[:pos] split_lines.append(split_text) line = line[pos:] + #if we have more text add up to 10 spaces on the front. if len(line) > 0 : line = u'%s%s' % \ (u' '[:self._theme.font_main_indentation], line)