summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/views.py
diff options
context:
space:
mode:
authorDavid Reyna <David.Reyna@windriver.com>2014-03-06 22:15:58 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-11 12:24:32 -0700
commit324791a729d29b929dd2c78489f2564d5e01ad92 (patch)
tree6a3bdbee7a14eac260532d1ef9a0b7ea09e8a5bf /bitbake/lib/toaster/toastergui/views.py
parent65c298dedf75ae3fb1ff90ba5e4e8e53b8e2f390 (diff)
downloadpoky-324791a729d29b929dd2c78489f2564d5e01ad92.tar.gz
bitbake: toaster: add empty outcome support to task page
Add the new "empty" outcome value to the task detail page, with help text, help notice, plus sorting for empty in the tasks page. [YOCTO #5917] (Bitbake rev: 874b627b96809c274023b5fa330dfbdd14676d19) Signed-off-by: David Reyna <David.Reyna@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/views.py')
-rw-r--r--bitbake/lib/toaster/toastergui/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index ccf95855a3..6273d4c5ae 100644
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -558,7 +558,7 @@ def tasks_common(request, build_id, variant):
558 ('Cached Tasks', 'outcome:%d'%Task.OUTCOME_CACHED), 558 ('Cached Tasks', 'outcome:%d'%Task.OUTCOME_CACHED),
559 ('Prebuilt Tasks', 'outcome:%d'%Task.OUTCOME_PREBUILT), 559 ('Prebuilt Tasks', 'outcome:%d'%Task.OUTCOME_PREBUILT),
560 ('Covered Tasks', 'outcome:%d'%Task.OUTCOME_COVERED), 560 ('Covered Tasks', 'outcome:%d'%Task.OUTCOME_COVERED),
561 ('Empty Tasks', 'outcome:%d'%Task.OUTCOME_NA), 561 ('Empty Tasks', 'outcome:%d'%Task.OUTCOME_EMPTY),
562 ] 562 ]
563 } 563 }
564 564