Skip to content
Snippets Groups Projects
Commit e6c8f5e7 authored by Christoph.Knote's avatar Christoph.Knote
Browse files

Fixed broken online version.

parent 8ac9c1e6
Branches
Tags
No related merge requests found
...@@ -211,7 +211,7 @@ class Experiment: ...@@ -211,7 +211,7 @@ class Experiment:
def _run(self, dumbOutput=False): def _run(self, dumbOutput=False):
try: try:
self.pid = s.Popen("./" + self.mechanism + ".exe", stdout=s.PIPE, bufsize=1) self.pid = s.Popen([ "./" + self.mechanism + ".exe" ], stdout=s.PIPE, bufsize=1, cwd=self.path)
self.pid.wait() self.pid.wait()
self._pp_run(dumbOutput=dumbOutput) self._pp_run(dumbOutput=dumbOutput)
except Exception as e: except Exception as e:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment