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

Commit

Permalink
Bug: Fix redefinition of variable in set_viewers_colorspace
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyprien CAILLOT committed Sep 11, 2024
1 parent d9731d0 commit 6d35ef2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions openpype/hosts/nuke/api/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -1995,9 +1995,9 @@ def set_viewers_colorspace(self, viewer_dict):
nv.setInput(i, n)

# set copied knobs
for k, v in copy_knobs.items():
print(k, v)
nv[k].setValue(v)
for k, value in copy_knobs.items():
print(k, value)
nv[k].setValue(value)

# set viewerProcess
nv["viewerProcess"].setValue(str(viewer_dict["viewerProcess"]))
Expand Down
2 changes: 1 addition & 1 deletion openpype/hosts/nuke/api/workfile_template_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ class NukePlaceholderCreatePlugin(
NukePlaceholderPlugin, PlaceholderCreateMixin
):
identifier = "nuke.create"
label = "Nuke create"
label = "Nuke Create"

def _parse_placeholder_node_data(self, node):
placeholder_data = super(
Expand Down

0 comments on commit 6d35ef2

Please sign in to comment.