From 320b692db736509edcc360c5a1f5e2de823fec63 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Wed, 30 Jan 2013 19:24:41 +0100 Subject: [PATCH] fixed lower case on some settings --- openlp/core/ui/mainwindow.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index b5f069854..ddee38c05 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -921,7 +921,8 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): # Write all the sections and keys. for section_key in keys: # FIXME: We are conflicting with the standard "General" section. - section_key = section_key.lower() + if u'eneral' in section_key: + section_key = section_key.lower() key_value = settings.value(section_key) if key_value is not None: export_settings.setValue(section_key, key_value)