summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/orm/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/orm/models.py')
-rw-r--r--bitbake/lib/toaster/orm/models.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py
index 6706da8..0646813 100644
--- a/bitbake/lib/toaster/orm/models.py
+++ b/bitbake/lib/toaster/orm/models.py
@@ -140,14 +140,14 @@ class Task(models.Model):
(OUTCOME_EMPTY, 'Empty'),
)
- TASK_OUTCOME_HELP = {
- OUTCOME_SUCCESS:'This task completed successfully',
- OUTCOME_COVERED:'This task did not run because its output is provided by another task',
- OUTCOME_CACHED:'This task restored output from the sstate-cache directory or mirrors',
- OUTCOME_PREBUILT:'This task did not run because its outcome was reused from a previous build',
- OUTCOME_FAILED:'This task did not complete',
- OUTCOME_NA:''
- }
+ TASK_OUTCOME_HELP = (
+ (OUTCOME_SUCCESS, 'This task completed successfully'),
+ (OUTCOME_COVERED, 'This task did not run because its output is provided by another task'),
+ (OUTCOME_CACHED, 'This task restored output from the sstate-cache directory or mirrors'),
+ (OUTCOME_PREBUILT, 'This task did not run because its outcome was reused from a previous build'),
+ (OUTCOME_FAILED, 'This task did not complete'),
+ (OUTCOME_NA, ''),
+ )
search_allowed_fields = [ "recipe__name", "recipe__version", "task_name", "logfile" ]
@@ -156,8 +156,8 @@ class Task(models.Model):
def get_related_setscene(self):
return Task.objects.related_setscene(self)
- def outcome_help(self):
- return Task.TASK_OUTCOME_HELP[self.outcome]
+ def get_outcome_help(self):
+ return Task.TASK_OUTCOME_HELP[self.outcome][1]
def get_executed_display(self):
if self.task_executed:
OpenPOWER on IntegriCloud