forked from openlp/openlp
Fixed traceback error when adding ini to filename
This commit is contained in:
parent
79ab8cc1c0
commit
b36a4f74d3
@ -992,7 +992,7 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow):
|
|||||||
return
|
return
|
||||||
# Make sure it's an .ini file.
|
# Make sure it's an .ini file.
|
||||||
if not exportFileName.endswith(u'ini'):
|
if not exportFileName.endswith(u'ini'):
|
||||||
exportFileName =+ u'.ini'
|
exportFileName = exportFileName + u'.ini'
|
||||||
self.saveSettings()
|
self.saveSettings()
|
||||||
headerSection = u'SettingsExport'
|
headerSection = u'SettingsExport'
|
||||||
settingSections = []
|
settingSections = []
|
||||||
|
Loading…
Reference in New Issue
Block a user