In the 'outcome' filter for tasks, remove the 'not applicable' option, since it should not be exposed to users.
Signed-off-by: Belen Barros Pena <[email protected]> --- bitbake/lib/toaster/toastergui/buildtables.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bitbake/lib/toaster/toastergui/buildtables.py b/bitbake/lib/toaster/toastergui/buildtables.py index 121b860..ed9b40e 100644 --- a/bitbake/lib/toaster/toastergui/buildtables.py +++ b/bitbake/lib/toaster/toastergui/buildtables.py @@ -394,6 +394,8 @@ class BuildTasksTable(BuildTablesMixin): title="Filter Task by 'Outcome'") for outcome_enum, title in Task.TASK_OUTCOME: + if outcome_enum is Task.OUTCOME_NA: + continue action = TableFilterActionToggle( title.replace(" ", "_").lower(), "%s Tasks" % title, -- 1.9.1 -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
