mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
Convert extension to lowercase.
This commit is contained in:
parent
90e3296bea
commit
b15ead3c84
1 changed files with 2 additions and 2 deletions
|
|
@ -196,11 +196,11 @@ 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:]
|
||||
|
||||
if input_ext.lower() not in self.supported_exts:
|
||||
if input_ext 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