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

Commit

Permalink
added todo
Browse files Browse the repository at this point in the history
  • Loading branch information
antirotor committed Mar 2, 2022
1 parent 17eaec1 commit bdd4e08
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions openpype/plugins/publish/extract_jpeg_exr.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ def process(self, instance):
self.log.info("subset {}".format(instance.data['subset']))

# skip crypto passes.
# TODO: This is just a quick fix and has its own side-effects - it is
# affecting every subset name with `crypto` in its name.
# This must be solved properly, maybe using tags on
# representation that can be determined much earlier and
# with better precision.
if 'crypto' in instance.data['subset'].lower():
self.log.info("Skipping crypto passes.")
return
Expand Down

0 comments on commit bdd4e08

Please sign in to comment.