Skip to content

Commit

Permalink
Added spaces to update_property() calls in GUI to reflect formatting …
Browse files Browse the repository at this point in the history
…of property file
  • Loading branch information
JoeJimFlood committed May 22, 2024
1 parent 07bb4ed commit f99ef44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/python/pythonGUI/createStudyAndScenario.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,8 @@ def executeBatch(self, type):
os.chdir(self.releaseDir+"\\"+self.version+'\\')
os.system(commandstr)
#self.update_property("version=version_14_2_2", "version=version_14_2_2\nLU version=" + self.lu)
self.update_property("version=version_15_0_0", "version=version_15_0_0\nLU version=" + self.lu)
self.update_property("geographyID=1", "geographyID=" + self.geo.get())
self.update_property("version = version_15_0_0", "version = version_15_0_0\nLU version = " + self.lu)
self.update_property("geographyID = 1", "geographyID = " + self.geo.get())
elif type=="study":
studyyears = self.studyyears.get().split(',')
exclude_file = self.studynetworkpath.get() + '\\exclude.txt'
Expand Down

0 comments on commit f99ef44

Please sign in to comment.