mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge remote-tracking branch 'origin/enhancement/OP-6154_Publishing-Luts' into enhancement/OP-6154_Publishing-Luts
This commit is contained in:
commit
c30fc498ee
2 changed files with 4 additions and 4 deletions
|
|
@ -59,7 +59,7 @@ class ValidateColorspaceLook(pyblish.api.InstancePlugin,
|
|||
|
||||
if not_set_keys:
|
||||
message = (
|
||||
f"Colorspace look attributes are not set: "
|
||||
"Colorspace look attributes are not set: "
|
||||
f"{', '.join(not_set_keys)}"
|
||||
)
|
||||
raise PublishValidationError(
|
||||
|
|
|
|||
|
|
@ -132,11 +132,11 @@ def _get_colorspace_data(config_path):
|
|||
roles = config.getRoles()
|
||||
if roles:
|
||||
colorspace_data.update({
|
||||
role[0]: {
|
||||
role: {
|
||||
"type": "role",
|
||||
"colorspace": role[1]
|
||||
"colorspace": colorspace
|
||||
}
|
||||
for role in roles
|
||||
for (role, colorspace) in roles
|
||||
})
|
||||
|
||||
return colorspace_data
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue