mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
OP-4504 - remove check for existence
For sequences source contains `%d` placeholder
This commit is contained in:
parent
b6873a063e
commit
e3866dff5a
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ class CollectSourceForSource(pyblish.api.InstancePlugin):
|
|||
current_file = instance.data.get("currentFile")
|
||||
source = instance.data.get("source")
|
||||
source_file = current_file or source
|
||||
if source_file and os.path.exists(source_file):
|
||||
if source_file:
|
||||
self.log.debug("Parsing paths for {}".format(source_file))
|
||||
if not instance.data.get("originalBasename"):
|
||||
instance.data["originalBasename"] = \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue