diff options
author | Belen Barros Pena <belen.barros.pena@intel.com> | 2014-03-15 14:01:48 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-25 21:32:17 +0000 |
commit | b7219721c482ec3e7ba5ecd136fe3f65193ce788 (patch) | |
tree | d3564b59b3630e3183c11d0af87585220b54a7ef /bitbake/lib/toaster/toastergui/views.py | |
parent | 7d9f1e2ed9381334fbced290e432d74fb55e3f95 (diff) | |
download | poky-b7219721c482ec3e7ba5ecd136fe3f65193ce788.tar.gz |
bitbake: toaster: Remove commented-out code from views.py
This code in the All tasks view class needed to be removed.
[YOCTO #6010]
(Bitbake rev: f9bfbda3557272452b824a433cf391e983e4abfe)
Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.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.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py index a9023a3b6a..3e59138ae3 100644 --- a/bitbake/lib/toaster/toastergui/views.py +++ b/bitbake/lib/toaster/toastergui/views.py | |||
@@ -732,11 +732,6 @@ def tasks_common(request, build_id, variant): | |||
732 | 732 | ||
733 | tasks = _build_page_range(Paginator(queryset, request.GET.get('count', 100)),request.GET.get('page', 1)) | 733 | tasks = _build_page_range(Paginator(queryset, request.GET.get('count', 100)),request.GET.get('page', 1)) |
734 | 734 | ||
735 | # Per Belen - do not show the covering task | ||
736 | # for t in tasks: | ||
737 | # if t.outcome == Task.OUTCOME_COVERED: | ||
738 | # t.provider = _find_task_provider(t) | ||
739 | |||
740 | # define (and modify by variants) the 'tablecols' members | 735 | # define (and modify by variants) the 'tablecols' members |
741 | tc_order={ | 736 | tc_order={ |
742 | 'name':'Order', | 737 | 'name':'Order', |