mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
use comment from instance where possible
This commit is contained in:
parent
fd5ac3be1b
commit
1f05a39522
8 changed files with 8 additions and 7 deletions
|
|
@ -468,7 +468,7 @@ class ExtractBurnin(publish.Extractor):
|
|||
|
||||
burnin_data.update({
|
||||
"version": int(version),
|
||||
"comment": context.data.get("comment") or ""
|
||||
"comment": instance.data["comment"]
|
||||
})
|
||||
|
||||
intent_label = context.data.get("intent") or ""
|
||||
|
|
|
|||
|
|
@ -772,7 +772,7 @@ class IntegrateAsset(pyblish.api.InstancePlugin):
|
|||
"time": context.data["time"],
|
||||
"author": context.data["user"],
|
||||
"source": source,
|
||||
"comment": context.data.get("comment"),
|
||||
"comment": instance.data["comment"],
|
||||
"machine": context.data.get("machine"),
|
||||
"fps": instance.data.get("fps", context.data.get("fps"))
|
||||
}
|
||||
|
|
|
|||
|
|
@ -968,7 +968,7 @@ class IntegrateAssetNew(pyblish.api.InstancePlugin):
|
|||
"time": context.data["time"],
|
||||
"author": context.data["user"],
|
||||
"source": source,
|
||||
"comment": context.data.get("comment"),
|
||||
"comment": instance.data["comment"],
|
||||
"machine": context.data.get("machine"),
|
||||
"fps": context.data.get(
|
||||
"fps", instance.data.get("fps")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue