mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
fixed group name to include full subset name but '_AOV'
This commit is contained in:
parent
fe8a71f97a
commit
e8ac6ddbf9
1 changed files with 5 additions and 4 deletions
|
|
@ -348,10 +348,11 @@ class ProcessSubmittedJobOnFarm(pyblish.api.InstancePlugin):
|
||||||
assert len(cols) == 1, "only one image sequence type is expected"
|
assert len(cols) == 1, "only one image sequence type is expected"
|
||||||
|
|
||||||
# create subset name `familyTaskSubset_AOV`
|
# create subset name `familyTaskSubset_AOV`
|
||||||
subset_name = 'render{}{}{}{}_{}'.format(
|
group_name = 'render{}{}{}{}'.format(
|
||||||
task[0].upper(), task[1:],
|
task[0].upper(), task[1:],
|
||||||
subset[0].upper(), subset[1:],
|
subset[0].upper(), subset[1:])
|
||||||
aov)
|
|
||||||
|
subset_name = '{}_{}'.format(group_name, aov)
|
||||||
|
|
||||||
staging = os.path.dirname(list(cols[0])[0])
|
staging = os.path.dirname(list(cols[0])[0])
|
||||||
|
|
||||||
|
|
@ -366,7 +367,7 @@ class ProcessSubmittedJobOnFarm(pyblish.api.InstancePlugin):
|
||||||
|
|
||||||
new_instance = copy(instance_data)
|
new_instance = copy(instance_data)
|
||||||
new_instance["subset"] = subset_name
|
new_instance["subset"] = subset_name
|
||||||
new_instance["subsetGroup"] = subset
|
new_instance["subsetGroup"] = group_name
|
||||||
|
|
||||||
ext = cols[0].tail.lstrip(".")
|
ext = cols[0].tail.lstrip(".")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue