Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

TrayPublisher: Fix missing argument #4019

Merged
merged 1 commit into from
Oct 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions openpype/hosts/traypublisher/api/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class HiddenTrayPublishCreator(HiddenCreator):
host_name = "traypublisher"

def collect_instances(self):
for instance_data in _cache_and_get_instances():
for instance_data in _cache_and_get_instances(self):
creator_id = instance_data.get("creator_identifier")
if creator_id == self.identifier:
instance = CreatedInstance.from_existing(
Expand Down Expand Up @@ -74,7 +74,7 @@ class TrayPublishCreator(Creator):
host_name = "traypublisher"

def collect_instances(self):
for instance_data in _cache_and_get_instances():
for instance_data in _cache_and_get_instances(self):
creator_id = instance_data.get("creator_identifier")
if creator_id == self.identifier:
instance = CreatedInstance.from_existing(
Expand Down