Merge pull request #1107 from JoseCovaOS/bugfix/1106-ExtractReview_does_not_process_representations_with_uppercase_extension

Support uppercase extensions in ExtractReview plugin
This commit is contained in:
Jakub Trllo 2025-03-28 10:17:11 +01:00 committed by GitHub
commit 32f2490bf5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -196,7 +196,7 @@ class ExtractReview(pyblish.api.InstancePlugin):
).format(repre_name))
continue
input_ext = repre["ext"]
input_ext = repre["ext"].lower()
if input_ext.startswith("."):
input_ext = input_ext[1:]