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

Fixed broken online version.

parent 8ac9c1e6
No related branches found
No related tags found
No related merge requests found
......@@ -211,7 +211,7 @@ class Experiment:
def _run(self, dumbOutput=False):
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._pp_run(dumbOutput=dumbOutput)
except Exception as e:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment