mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
fix(global): integrate_new
- families missing comma - subsetGroup were not integrating properly
This commit is contained in:
parent
c6c52d43f0
commit
3ed91886b4
1 changed files with 3 additions and 3 deletions
|
|
@ -62,7 +62,6 @@ class IntegrateAssetNew(pyblish.api.InstancePlugin):
|
|||
"render",
|
||||
"imagesequence",
|
||||
"review",
|
||||
"render",
|
||||
"rendersetup",
|
||||
"rig",
|
||||
"plate",
|
||||
|
|
@ -71,7 +70,7 @@ class IntegrateAssetNew(pyblish.api.InstancePlugin):
|
|||
"audio",
|
||||
"yetiRig",
|
||||
"yeticache",
|
||||
"nukenodes"
|
||||
"nukenodes",
|
||||
"gizmo"
|
||||
]
|
||||
exclude_families = ["clip"]
|
||||
|
|
@ -528,10 +527,11 @@ class IntegrateAssetNew(pyblish.api.InstancePlugin):
|
|||
subset["data"].update(
|
||||
{"subsetGroup": instance.data.get("subsetGroup")}
|
||||
)
|
||||
self.log.info("__ subset.data: {}".format(subset["data"]))
|
||||
io.update_many({
|
||||
'type': 'subset',
|
||||
'_id': io.ObjectId(subset["_id"])
|
||||
}, {'$set': subset["data"]}
|
||||
}, {'$set': {'data': subset["data"]}}
|
||||
)
|
||||
|
||||
return subset
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue