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

Commit

Permalink
Merge pull request #4180 from Tilix4/fx_template_path_cross_platform
Browse files Browse the repository at this point in the history
Fix: Template path wrong normpath for cross platform
  • Loading branch information
iLLiCiTiT authored Dec 8, 2022
2 parents 06d99c0 + 367b7b2 commit 8d3aad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/lib/path_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def normalized(self):

cls = self.__class__
return cls(
os.path.normpath(self),
os.path.normpath(self.replace("\\", "/")),
self.template,
self.solved,
self.used_values,
Expand Down

0 comments on commit 8d3aad3

Please sign in to comment.