hound fix

This commit is contained in:
Kayla Man 2023-06-02 17:13:08 +08:00
parent 27ae0d9f20
commit 22251f4958

View file

@ -1,6 +1,5 @@
import os
import nuke
from pathlib import Path
from openpype.hosts.nuke.api.lib import set_node_knobs_from_settings
@ -70,10 +69,10 @@ def main():
ext = knob["value"]
for w in write_selected_nodes:
data = {
"work": os.getenv("AVALON_WORKDIR"),
"subset": w["name"].value(),
"frame": "#" * frame_padding,
"ext": ext
"work": os.getenv("AVALON_WORKDIR"),
"subset": w["name"].value(),
"frame": "#" * frame_padding,
"ext": ext
}
file_path = temp_rendering_path_template.format(**data)
file_path = file_path.replace("\\", "/")