summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/views.py')
-rwxr-xr-xbitbake/lib/toaster/toastergui/views.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index baaa2883bc..aab6536fa0 100755
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -2315,6 +2315,9 @@ if True:
2315 elif artifact_type == "licensemanifest": 2315 elif artifact_type == "licensemanifest":
2316 file_name = Target.objects.get(build = build, pk = artifact_id).license_manifest_path 2316 file_name = Target.objects.get(build = build, pk = artifact_id).license_manifest_path
2317 2317
2318 elif artifact_type == "packagemanifest":
2319 file_name = Target.objects.get(build = build, pk = artifact_id).package_manifest_path
2320
2318 elif artifact_type == "tasklogfile": 2321 elif artifact_type == "tasklogfile":
2319 file_name = Task.objects.get(build = build, pk = artifact_id).logfile 2322 file_name = Task.objects.get(build = build, pk = artifact_id).logfile
2320 2323