mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
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:
commit
32f2490bf5
1 changed files with 1 additions and 1 deletions
|
|
@ -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:]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue