summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/orm/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py
index 24d8d9c573..588e1b9265 100644
--- a/bitbake/lib/toaster/orm/models.py
+++ b/bitbake/lib/toaster/orm/models.py
@@ -78,7 +78,7 @@ class Task(models.Model):
78 78
79 SSTATE_RESULT = ( 79 SSTATE_RESULT = (
80 (SSTATE_NA, 'Not Applicable'), # For rest of tasks, but they still need checking. 80 (SSTATE_NA, 'Not Applicable'), # For rest of tasks, but they still need checking.
81 (SSTATE_MISS, 'Missing'), # it is a miss 81 (SSTATE_MISS, 'File not in cache'), # the sstate object was not found
82 (SSTATE_FAILED, 'Failed'), # there was a pkg, but the script failed 82 (SSTATE_FAILED, 'Failed'), # there was a pkg, but the script failed
83 (SSTATE_RESTORED, 'Succeeded'), # successfully restored 83 (SSTATE_RESTORED, 'Succeeded'), # successfully restored
84 ) 84 )