mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 13:24:54 +01:00
use underscore as separator between asset name and repre
This commit is contained in:
parent
c11d9a3951
commit
629d7f684b
1 changed files with 4 additions and 1 deletions
|
|
@ -165,7 +165,10 @@ class IntegrateFtrackInstance(pyblish.api.InstancePlugin):
|
|||
first_review_repre = False
|
||||
else:
|
||||
# Add representation name to asset name of "not first" review
|
||||
review_item["asset_data"]["name"] += repre["name"].title()
|
||||
asset_name = review_item["asset_data"]["name"]
|
||||
review_item["asset_data"]["name"] = "_".join(
|
||||
(asset_name, repre["name"])
|
||||
)
|
||||
|
||||
# Set location
|
||||
review_item["component_location"] = ftrack_server_location
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue