Merge pull request #453 from pypeclub/bugfix/ftrack_app_launch_fix

Bugfix/ftrack app launch fix
This commit is contained in:
Milan Kolar 2020-08-18 17:37:06 +02:00 committed by GitHub
commit ae14790f01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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