added missing argument to launch_application in ftrack app handler

This commit is contained in:
iLLiCiTiT 2020-08-18 17:33:58 +02:00
parent 68deeccad2
commit 8f9fb484ce

View file

@ -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))