mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
Fix full path in representation for single images (non-UDIM)
This commit is contained in:
parent
5c0a7e30ed
commit
cba71b9e0d
1 changed files with 1 additions and 1 deletions
|
|
@ -120,7 +120,7 @@ class CollectTextureSet(pyblish.api.InstancePlugin):
|
|||
map_fnames = [os.path.basename(path) for path in map_output]
|
||||
else:
|
||||
first_file = map_output
|
||||
map_fnames = map_output
|
||||
map_fnames = os.path.basename(map_output)
|
||||
|
||||
ext = os.path.splitext(first_file)[1]
|
||||
assert ext.lstrip('.'), f"No extension: {ext}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue