mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #4180 from Tilix4/fx_template_path_cross_platform
Fix: Template path wrong normpath for cross platform
This commit is contained in:
commit
8d3aad3689
1 changed files with 1 additions and 1 deletions
|
|
@ -422,7 +422,7 @@ class TemplateResult(str):
|
|||
|
||||
cls = self.__class__
|
||||
return cls(
|
||||
os.path.normpath(self),
|
||||
os.path.normpath(self.replace("\\", "/")),
|
||||
self.template,
|
||||
self.solved,
|
||||
self.used_values,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue