diff --git a/src/sbmlsim/report/experiment_report.py b/src/sbmlsim/report/experiment_report.py index 85e2c49..ac1488c 100644 --- a/src/sbmlsim/report/experiment_report.py +++ b/src/sbmlsim/report/experiment_report.py @@ -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