mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge branch 'hotfix/PYPE-761-config-ocio-path-slashes' into develop
This commit is contained in:
commit
1ea3d5e6ef
1 changed files with 2 additions and 1 deletions
|
|
@ -619,7 +619,8 @@ class WorkfileSettings(object):
|
|||
# third set ocio custom path
|
||||
if root_dict.get("customOCIOConfigPath"):
|
||||
self._root_node["customOCIOConfigPath"].setValue(
|
||||
str(root_dict["customOCIOConfigPath"]).format(**os.environ)
|
||||
str(root_dict["customOCIOConfigPath"]).format(
|
||||
**os.environ).replace("\\", "/")
|
||||
)
|
||||
log.debug("nuke.root()['{}'] changed to: {}".format(
|
||||
"customOCIOConfigPath", root_dict["customOCIOConfigPath"]))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue