From ac769b96f96135278a01b02b71a4cf60514500eb Mon Sep 17 00:00:00 2001 From: Martin Barrett Date: Sat, 30 Jun 2012 17:15:42 +0100 Subject: [PATCH] fixes bug #986699: Print Service not separating verses --- openlp/core/ui/printserviceform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/printserviceform.py b/openlp/core/ui/printserviceform.py index 833b68801..4e96dc77d 100644 --- a/openlp/core/ui/printserviceform.py +++ b/openlp/core/ui/printserviceform.py @@ -334,7 +334,7 @@ class PrintServiceForm(QtGui.QDialog, Ui_PrintServiceDialog): cursor.select(3) clipboard_text = cursor.selectedText () # We now have the unprocessed unicode service text in the cursor - # So we replace u2029 with \n and u2029 with \n\n and a few others + # So we replace u2028 with \n and u2029 with \n\n and a few others clipboard_text = clipboard_text.replace(u'\u2028', u'\n') clipboard_text = clipboard_text.replace(u'\u2029', u'\n\n') clipboard_text = clipboard_text.replace(u'\u2018', u'\'')