diff --git a/openpype/hosts/aftereffects/api/pipeline.py b/openpype/hosts/aftereffects/api/pipeline.py index e7f83e1f89..3f18347d44 100644 --- a/openpype/hosts/aftereffects/api/pipeline.py +++ b/openpype/hosts/aftereffects/api/pipeline.py @@ -294,5 +294,6 @@ def cache_and_get_instances(creator): """ shared_key = "openpype.photoshop.instances" if shared_key not in creator.collection_shared_data: - creator.collection_shared_data[shared_key] = creator.list_instances() + creator.collection_shared_data[shared_key] = \ + creator.host.list_instances() return creator.collection_shared_data[shared_key]