Skip to content

Commit ac02c75

Browse files
committed
Fix typo causing a crash when displaying the success message. Update version to 1.1.1
1 parent dfb37ae commit ac02c75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

OpenMWExport.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def description(self):
3737
return self.__tr("Transfers mod list (left pane) to data fields in OpenMW.cfg and plugin list (right pane, plugins tab) to content fields in OpenMW.cfg. This allows you to run OpenMW with the current profile's setup from outside of Mod Organizer")
3838

3939
def version(self):
40-
return mobase.VersionInfo(1, 1, 0, mobase.ReleaseType.final)
40+
return mobase.VersionInfo(1, 1, 1, mobase.ReleaseType.final)
4141

4242
def isActive(self):
4343
return True
@@ -93,7 +93,7 @@ def display(self):
9393
# actually write out the list
9494
for pluginIndex in range(len(loadOrder)):
9595
openmwcfg.write(u"content=" + loadOrder[pluginIndex] + u"\n")
96-
QMessageBox.information(self.__parentWidget, self.__tr("OpenMW Export Complete"), self.__tr("The export to OpenMW completed successfully. The current setup was saved to {0}"),format(configPath))
96+
QMessageBox.information(self.__parentWidget, self.__tr("OpenMW Export Complete"), self.__tr("The export to OpenMW completed successfully. The current setup was saved to {0}").format(configPath))
9797

9898
def __tr(self, str):
9999
return QCoreApplication.translate("OpenMWExportPlugin", str)

0 commit comments

Comments
 (0)