Merge pull request #473 from pypeclub/bugfix/publishing-review-ignoring

Review on instance.data
This commit is contained in:
Milan Kolar 2020-08-21 16:27:26 +02:00 committed by GitHub
commit 080c24ae6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ class ExtractJpegEXR(pyblish.api.InstancePlugin):
return
# Skip review when requested.
if not instance.data.get("review"):
if not instance.data.get("review", True):
return
# get representation and loop them

View file

@ -51,7 +51,7 @@ class ExtractReview(pyblish.api.InstancePlugin):
def process(self, instance):
# Skip review when requested.
if not instance.data.get("review"):
if not instance.data.get("review", True):
return
# ffmpeg doesn't support multipart exrs