mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
added fix when extension has dot
This commit is contained in:
parent
c0af349a9f
commit
361eb3564e
1 changed files with 3 additions and 1 deletions
|
|
@ -40,7 +40,9 @@ class ExtractReview(pyblish.api.InstancePlugin):
|
|||
# filter out mov and img sequences
|
||||
representations_new = representations[:]
|
||||
for repre in representations:
|
||||
if repre['ext'] in plugin_attrs["ext_filter"]:
|
||||
# remove dot if extension has
|
||||
repre_ext = repre['ext'].replace(".", "")
|
||||
if repre_ext not in plugin_attrs["ext_filter"]:
|
||||
tags = repre.get("tags", [])
|
||||
|
||||
self.log.info("Try repre: {}".format(repre))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue