mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-27 14:22:37 +01:00
Fix the if statement
This commit is contained in:
parent
4fdb31611d
commit
5b3af11f0f
1 changed files with 1 additions and 1 deletions
|
|
@ -161,7 +161,7 @@ class IntegrateAsset(pyblish.api.InstancePlugin):
|
|||
return
|
||||
|
||||
# Instance is marked to not get integrated
|
||||
if instance.data.get("integrate", True):
|
||||
if not instance.data.get("integrate", True):
|
||||
self.log.info("Instance is marked to skip integrating. Skipping")
|
||||
return
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue