diff options
Diffstat (limited to 'bitbake/lib/toaster/bldcollector')
-rw-r--r-- | bitbake/lib/toaster/bldcollector/urls.py | 2 | ||||
-rw-r--r-- | bitbake/lib/toaster/bldcollector/views.py | 8 |
2 files changed, 1 insertions, 9 deletions
diff --git a/bitbake/lib/toaster/bldcollector/urls.py b/bitbake/lib/toaster/bldcollector/urls.py index 8eb1e34a53..efd67a81a5 100644 --- a/bitbake/lib/toaster/bldcollector/urls.py +++ b/bitbake/lib/toaster/bldcollector/urls.py | |||
@@ -6,7 +6,7 @@ | |||
6 | # SPDX-License-Identifier: GPL-2.0-only | 6 | # SPDX-License-Identifier: GPL-2.0-only |
7 | # | 7 | # |
8 | 8 | ||
9 | from django.conf.urls import include, url | 9 | from django.conf.urls import url |
10 | 10 | ||
11 | import bldcollector.views | 11 | import bldcollector.views |
12 | 12 | ||
diff --git a/bitbake/lib/toaster/bldcollector/views.py b/bitbake/lib/toaster/bldcollector/views.py index c708b415e1..6d9227cd7f 100644 --- a/bitbake/lib/toaster/bldcollector/views.py +++ b/bitbake/lib/toaster/bldcollector/views.py | |||
@@ -6,16 +6,8 @@ | |||
6 | # SPDX-License-Identifier: GPL-2.0-only | 6 | # SPDX-License-Identifier: GPL-2.0-only |
7 | # | 7 | # |
8 | 8 | ||
9 | from django.views.decorators.cache import cache_control | ||
10 | from django.core.urlresolvers import reverse | 9 | from django.core.urlresolvers import reverse |
11 | from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger | ||
12 | from django.http import HttpResponseBadRequest, HttpResponse | 10 | from django.http import HttpResponseBadRequest, HttpResponse |
13 | from django.utils import timezone | ||
14 | from django.utils.html import escape | ||
15 | from datetime import timedelta | ||
16 | from django.utils import formats | ||
17 | from toastergui.templatetags.projecttags import json as jsonfilter | ||
18 | import json | ||
19 | import os | 11 | import os |
20 | import tempfile | 12 | import tempfile |
21 | import subprocess | 13 | import subprocess |