fix ftrack ignore sync filter (#5176)

This commit is contained in:
kaa 2023-06-22 15:56:20 +02:00 committed by GitHub
parent 97f3bdf5ec
commit ecc152ffe1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -890,7 +890,7 @@ class SyncEntitiesFactory:
else:
parent_dict = self.entities_dict.get(parent_id, {})
for child_id in parent_dict.get("children", []):
for child_id in list(parent_dict.get("children", [])):
# keep original `remove` value for all children
_remove = (remove is True)
if not _remove: