From 091d604901289d76083646abd3cfd1f493314a81 Mon Sep 17 00:00:00 2001 From: Jon Tibble Date: Tue, 18 Jan 2011 19:31:03 +0000 Subject: [PATCH] Better string fix --- openlp/plugins/songs/forms/editsongform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/plugins/songs/forms/editsongform.py b/openlp/plugins/songs/forms/editsongform.py index 43fba6dd9..b36ea55e1 100644 --- a/openlp/plugins/songs/forms/editsongform.py +++ b/openlp/plugins/songs/forms/editsongform.py @@ -553,7 +553,7 @@ class EditSongForm(QtGui.QDialog, Ui_EditSongDialog): return False if self.verseOrderEdit.text(): order = [] - order_names = str(self.verseOrderEdit.text()).split() + order_names = unicode(self.verseOrderEdit.text()).split() for item in order_names: if len(item) == 1: order.append(item.lower() + u'1')