mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +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
|
# filter out mov and img sequences
|
||||||
representations_new = representations[:]
|
representations_new = representations[:]
|
||||||
for repre in 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", [])
|
tags = repre.get("tags", [])
|
||||||
|
|
||||||
self.log.info("Try repre: {}".format(repre))
|
self.log.info("Try repre: {}".format(repre))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue