Fixed traceback error when adding ini to filename

This commit is contained in:
Stevan Pettit 2011-08-21 19:15:16 -04:00
parent 79ab8cc1c0
commit b36a4f74d3
1 changed files with 1 additions and 1 deletions

View File

@ -992,7 +992,7 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow):
return
# Make sure it's an .ini file.
if not exportFileName.endswith(u'ini'):
exportFileName =+ u'.ini'
exportFileName = exportFileName + u'.ini'
self.saveSettings()
headerSection = u'SettingsExport'
settingSections = []