Skip to content

Commit

Permalink
don't use openpype naming keys
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Sep 3, 2024
1 parent a9c100c commit a08a1af
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 0 additions & 2 deletions client/ayon_core/plugins/publish/collect_addons.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,3 @@ def process(self, context):
manager = AddonsManager()
context.data["ayonAddonsManager"] = manager
context.data["ayonAddons"] = manager.addons_by_name
# Backwards compatibility - remove
context.data["openPypeModules"] = manager.addons_by_name
5 changes: 1 addition & 4 deletions client/ayon_core/plugins/publish/collect_rendered_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,7 @@ def _process_path(self, data, anatomy):
def process(self, context):
self._context = context

publish_data_paths = (
os.environ.get("AYON_PUBLISH_DATA")
or os.environ.get("OPENPYPE_PUBLISH_DATA")
)
publish_data_paths = os.environ.get("AYON_PUBLISH_DATA")
if not publish_data_paths:
raise KnownPublishError("Missing `AYON_PUBLISH_DATA`")

Expand Down

0 comments on commit a08a1af

Please sign in to comment.