diff options
Diffstat (limited to 'bitbake/lib/toaster/orm')
-rw-r--r-- | bitbake/lib/toaster/orm/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py index 0646813552..93506d7c1b 100644 --- a/bitbake/lib/toaster/orm/models.py +++ b/bitbake/lib/toaster/orm/models.py | |||
@@ -146,6 +146,7 @@ class Task(models.Model): | |||
146 | (OUTCOME_CACHED, 'This task restored output from the sstate-cache directory or mirrors'), | 146 | (OUTCOME_CACHED, 'This task restored output from the sstate-cache directory or mirrors'), |
147 | (OUTCOME_PREBUILT, 'This task did not run because its outcome was reused from a previous build'), | 147 | (OUTCOME_PREBUILT, 'This task did not run because its outcome was reused from a previous build'), |
148 | (OUTCOME_FAILED, 'This task did not complete'), | 148 | (OUTCOME_FAILED, 'This task did not complete'), |
149 | (OUTCOME_EMPTY, 'This task has no executable content'), | ||
149 | (OUTCOME_NA, ''), | 150 | (OUTCOME_NA, ''), |
150 | ) | 151 | ) |
151 | 152 | ||