Skip to content

Commit

Permalink
Fix typo causing a crash when displaying the success message. Update …
Browse files Browse the repository at this point in the history
…version to 1.1.1
  • Loading branch information
AnyOldName3 committed Apr 18, 2018
1 parent dfb37ae commit ac02c75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OpenMWExport.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def description(self):
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")

def version(self):
return mobase.VersionInfo(1, 1, 0, mobase.ReleaseType.final)
return mobase.VersionInfo(1, 1, 1, mobase.ReleaseType.final)

def isActive(self):
return True
Expand Down Expand Up @@ -93,7 +93,7 @@ def display(self):
# actually write out the list
for pluginIndex in range(len(loadOrder)):
openmwcfg.write(u"content=" + loadOrder[pluginIndex] + u"\n")
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))
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))

def __tr(self, str):
return QCoreApplication.translate("OpenMWExportPlugin", str)
Expand Down

0 comments on commit ac02c75

Please sign in to comment.