Skip to content

Commit

Permalink
bugfix for windows paths
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskoenig committed Apr 5, 2024
1 parent 1ee9ee3 commit 814c659
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sbmlsim/report/experiment_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,5 +193,6 @@ def write_report(filename: str, context: Dict, template_str: str) -> Path:
context=context,
template_str=f"index.{suffix}"
)
logger.info(f"report created: file://{output_path}'")
report_path_str: str = str(output_path).replace('\\', '/')
logger.info(f"report created: file://{report_path_str}")
return output_path

0 comments on commit 814c659

Please sign in to comment.