ftrack will add even applications without host implementation

This commit is contained in:
Jakub Trllo 2022-02-04 17:10:59 +01:00
parent b01bf9c91f
commit c419b5cea0

View file

@ -17,7 +17,7 @@ def default_custom_attributes_definition():
def app_definitions_from_app_manager(app_manager):
_app_definitions = []
for app_name, app in app_manager.applications.items():
if app.enabled and app.is_host:
if app.enabled:
_app_definitions.append(
(app_name, app.full_label)
)