Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Fix: Template path wrong normpath for cross platform
Browse files Browse the repository at this point in the history
  • Loading branch information
Tilix4 committed Dec 6, 2022
1 parent 7c16c15 commit 89c5fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/pipeline/load/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ def get_representation_path_with_anatomy(repre_doc, anatomy):
"""

try:
template = repre_doc["data"]["template"]
template = repre_doc["data"]["template"].replace("\\", "/")

except KeyError:
raise InvalidRepresentationContext((
Expand Down

0 comments on commit 89c5fdf

Please sign in to comment.