Skip to content

Commit

Permalink
fix for running on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
f-brinkmann committed Jun 23, 2022
1 parent f2cd60d commit f56a6f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesh2hrtf/Output2HRTF/Python/numcalc.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def numcalc_manager(project_path=os.getcwd(), numcalc_path=None,
LogFileHandle = open(f"NC{step}-{step}_log.txt", "w")
# run NumCalc and route all printouts to a log file
subprocess.run(
[f"{numcalc_executable} -istart {step} -iend {step}"],
f"{numcalc_executable} -istart {step} -iend {step}",
stdout=LogFileHandle, cwd=cwd)

else: # elif os.name == 'posix': Linux or Mac detected
Expand Down

0 comments on commit f56a6f3

Please sign in to comment.