mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
make sure the parsed file is string value inside resources['files']
This commit is contained in:
parent
462e315230
commit
6c92eb513f
1 changed files with 3 additions and 2 deletions
|
|
@ -284,8 +284,9 @@ class CollectYetiRig(plugin.MayaInstancePlugin):
|
|||
files,
|
||||
patterns=[clique.PATTERNS["frames"]],
|
||||
minimum_items=1)
|
||||
|
||||
return collection
|
||||
files = [texture for texture_collection in collection
|
||||
for texture in texture_collection]
|
||||
return files
|
||||
|
||||
def _replace_tokens(self, strings):
|
||||
env_re = re.compile(r"\$\{(\w+)\}")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue