mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
Support uppercase extensions.
This commit is contained in:
parent
cd3543f424
commit
90e3296bea
1 changed files with 1 additions and 1 deletions
|
|
@ -200,7 +200,7 @@ class ExtractReview(pyblish.api.InstancePlugin):
|
|||
if input_ext.startswith("."):
|
||||
input_ext = input_ext[1:]
|
||||
|
||||
if input_ext not in self.supported_exts:
|
||||
if input_ext.lower() not in self.supported_exts:
|
||||
self.log.info(
|
||||
"Representation has unsupported extension \"{}\"".format(
|
||||
input_ext
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue