diff options
author | Belen Barros Pena <belen.barros.pena@linux.intel.com> | 2016-06-09 11:53:20 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-15 08:35:05 +0100 |
commit | e23faacd6f17be69c6945ffb55779cedee3c03a6 (patch) | |
tree | bcb83b253e791999e771ff6e174f804ce7e7e554 | |
parent | 0db23ae759fe0f5f7861bc2d87dd4566237e35e7 (diff) | |
download | poky-e23faacd6f17be69c6945ffb55779cedee3c03a6.tar.gz |
bitbake: toaster: BuildTasksTable filters remove outcome NA option
In the 'outcome' filter for tasks, remove the 'not applicable' option,
since it should not be exposed to users.
(Bitbake rev: 4e21817b0d7a91e634bdb2069850627c38fde053)
Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com>
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/toaster/toastergui/buildtables.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/buildtables.py b/bitbake/lib/toaster/toastergui/buildtables.py index 4edd0e86c4..f3d7236ae6 100644 --- a/bitbake/lib/toaster/toastergui/buildtables.py +++ b/bitbake/lib/toaster/toastergui/buildtables.py | |||
@@ -389,6 +389,8 @@ class BuildTasksTable(BuildTablesMixin): | |||
389 | title="Filter Task by 'Outcome'") | 389 | title="Filter Task by 'Outcome'") |
390 | 390 | ||
391 | for outcome_enum, title in Task.TASK_OUTCOME: | 391 | for outcome_enum, title in Task.TASK_OUTCOME: |
392 | if outcome_enum is Task.OUTCOME_NA: | ||
393 | continue | ||
392 | action = TableFilterActionToggle( | 394 | action = TableFilterActionToggle( |
393 | title.replace(" ", "_").lower(), | 395 | title.replace(" ", "_").lower(), |
394 | "%s Tasks" % title, | 396 | "%s Tasks" % title, |