Skip to content

Commit

Permalink
Merge pull request #409 from sotorrio1/locatingFiles
Browse files Browse the repository at this point in the history
fixing path name
  • Loading branch information
sotorrio1 authored Feb 27, 2019
2 parents cd29e81 + a223e20 commit 288fa13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions foqus_lib/gui/sdoe/sdoeAnalysisDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,9 +413,9 @@ def updateRunTime(self, runtime):
def editSdoe(self):
sender = self.sender()
row = sender.property('row')
sdoeData = LocalExecutionModule.readSampleFromCsvFile(self.analysis[row][4], False)
tempdir = os.path.join(*self.analysis[row][4].split(os.sep)[0:-1])
dirname = os.path.join(os.sep, tempdir)
fullName = self.analysis[row][4]
dirname, filename = os.path.split(fullName)
sdoeData = LocalExecutionModule.readSampleFromCsvFile(fullName, False)
dialog = sdoePreview(sdoeData, dirname, self)
dialog.show()

Expand Down

0 comments on commit 288fa13

Please sign in to comment.