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)