mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 08:54:53 +01:00
Match behavior more with what integrator did before refactor
This commit is contained in:
parent
89376a97e4
commit
e6209555b0
1 changed files with 3 additions and 3 deletions
|
|
@ -93,9 +93,9 @@ class CollectAnatomyContextData(pyblish.api.ContextPlugin):
|
|||
|
||||
intent = context.data.get("intent")
|
||||
if intent and isinstance(intent, dict):
|
||||
intent_value = intent.get("value")
|
||||
if intent_value:
|
||||
context_data["intent"] = intent_value
|
||||
intent = intent.get("value")
|
||||
if intent:
|
||||
context_data["intent"] = intent
|
||||
|
||||
self.log.info("Global anatomy Data collected")
|
||||
self.log.debug(json.dumps(context_data, indent=4))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue