summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/views.py
diff options
context:
space:
mode:
authorDavid Reyna <David.Reyna@windriver.com>2023-08-28 01:45:18 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-08-30 10:41:54 +0100
commit9ccaee95d6afc65d528b469d16b4719733768ef6 (patch)
treed6101a730c67d03f65c25486efecaf7031a64fb5 /bitbake/lib/toaster/toastergui/views.py
parent10f38157a069cb6938323cadd5e523037a29ace9 (diff)
downloadpoky-9ccaee95d6afc65d528b469d16b4719733768ef6.tar.gz
bitbake: toaster: Update to Django 4.2
Update Toaster to support Django 4.2, to match current hosts and to address CVEs. [YOCTO #15152] (Bitbake rev: 4f5b1f5bede402295bf4dfc8845fe2f38973e157) Signed-off-by: Kieran McNulty <Kieran.McNulty@windriver.com> Signed-off-by: David Reyna <David.Reyna@windriver.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index a571b8cc18..bf92510cdc 100644
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -670,11 +670,11 @@ def xhr_dirinfo(request, build_id, target_id):
670 return HttpResponse(_get_dir_entries(build_id, target_id, top), content_type = "application/json") 670 return HttpResponse(_get_dir_entries(build_id, target_id, top), content_type = "application/json")
671 671
672from django.utils.functional import Promise 672from django.utils.functional import Promise
673from django.utils.encoding import force_text 673from django.utils.encoding import force_str
674class LazyEncoder(json.JSONEncoder): 674class LazyEncoder(json.JSONEncoder):
675 def default(self, obj): 675 def default(self, obj):
676 if isinstance(obj, Promise): 676 if isinstance(obj, Promise):
677 return force_text(obj) 677 return force_str(obj)
678 return super(LazyEncoder, self).default(obj) 678 return super(LazyEncoder, self).default(obj)
679 679
680from toastergui.templatetags.projecttags import filtered_filesizeformat 680from toastergui.templatetags.projecttags import filtered_filesizeformat