mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
do not store missing task path if task is not set
This commit is contained in:
parent
1550196234
commit
cf3d15e51d
1 changed files with 1 additions and 1 deletions
|
|
@ -203,7 +203,7 @@ class CollectAnatomyInstanceData(pyblish.api.ContextPlugin):
|
|||
.get(folder_id, {})
|
||||
.get(task_name)
|
||||
)
|
||||
if not task_entity:
|
||||
if task_name and not task_entity:
|
||||
folder_path = folder_path_by_id[folder_id]
|
||||
not_found_task_paths.append(
|
||||
"/".join([folder_path, task_name])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue