From 24834b66eee3f85b10016a7f600f86c0b6ff19d1 Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Wed, 20 Nov 2013 19:31:35 +0000 Subject: [PATCH] fixed bug1252477 --- openlp/plugins/bibles/lib/biblestab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/plugins/bibles/lib/biblestab.py b/openlp/plugins/bibles/lib/biblestab.py index dbd78dd6b..789d5920f 100644 --- a/openlp/plugins/bibles/lib/biblestab.py +++ b/openlp/plugins/bibles/lib/biblestab.py @@ -293,7 +293,7 @@ class BiblesTab(SettingsTab): translate('BiblesPlugin.BiblesTab', 'English')) def onBibleThemeComboBoxChanged(self): - self.bible_theme = self.bibleThemeComboBox.currentText() + self.bible_theme = unicode(self.bibleThemeComboBox.currentText()) def onDisplayStyleComboBoxChanged(self): self.display_style = self.displayStyleComboBox.currentIndex()