diff --git a/robotics_application_manager/manager/manager.py b/robotics_application_manager/manager/manager.py index 7698fd6..869fafa 100644 --- a/robotics_application_manager/manager/manager.py +++ b/robotics_application_manager/manager/manager.py @@ -751,6 +751,11 @@ def on_run_application(self, event): # Extract app config app_cfg = event.kwargs.get("data", {}) entrypoint = app_cfg["entrypoint"] + + # Backwards compatibility for now + if isinstance(entrypoint, list): + entrypoint = entrypoint[0] + to_lint = app_cfg["linter"] # Unzip the app