mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
added missing argument to launch_application in ftrack app handler
This commit is contained in:
parent
68deeccad2
commit
8f9fb484ce
1 changed files with 3 additions and 1 deletions
|
|
@ -149,7 +149,9 @@ class AppAction(BaseAction):
|
|||
asset_name = entity["parent"]["name"]
|
||||
project_name = entity["project"]["full_name"]
|
||||
try:
|
||||
pypelib.launch_application(project_name, asset_name, task_name)
|
||||
pypelib.launch_application(
|
||||
project_name, asset_name, task_name, self.identifier
|
||||
)
|
||||
|
||||
except pypelib.ApplicationLaunchFailed as exc:
|
||||
self.log.error(str(exc))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue