diff --git a/openpype/hosts/photoshop/api/pipeline.py b/openpype/hosts/photoshop/api/pipeline.py index 8a6626a84e..73e2d4458e 100644 --- a/openpype/hosts/photoshop/api/pipeline.py +++ b/openpype/hosts/photoshop/api/pipeline.py @@ -303,5 +303,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]