Skip to content

Commit dd6df8e

Browse files
fix: manifest path should render as posix rather than uri (#1289)
Co-authored-by: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com>
1 parent 6641da6 commit dd6df8e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

doc/changelog.d/1289.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fix: manifest path should render as posix rather than uri

src/ansys/geometry/core/connection/product_instance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ def _manifest_path_provider(
413413
)
414414

415415
if def_manifest_path.exists():
416-
return def_manifest_path.as_uri()
416+
return def_manifest_path.as_posix()
417417
else:
418418
msg = (
419419
"Default manifest file's path does not exist."

0 commit comments

Comments
 (0)