diff options
Diffstat (limited to 'bitbake/lib/bb/ui/buildinfohelper.py')
-rw-r--r-- | bitbake/lib/bb/ui/buildinfohelper.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py index 967e4bdca2..c0f42d2dcb 100644 --- a/bitbake/lib/bb/ui/buildinfohelper.py +++ b/bitbake/lib/bb/ui/buildinfohelper.py | |||
@@ -190,8 +190,8 @@ class ORMWrapper(object): | |||
190 | vars(task_object)[v] = task_information[v] | 190 | vars(task_object)[v] = task_information[v] |
191 | object_changed = True | 191 | object_changed = True |
192 | 192 | ||
193 | # update setscene-related information if the task was just created | 193 | # update setscene-related information if the task has a setscene |
194 | if created and task_object.outcome == Task.OUTCOME_COVERED and 1 == Task.objects.related_setscene(task_object).count(): | 194 | if task_object.outcome == Task.OUTCOME_COVERED and 1 == task_object.get_related_setscene().count(): |
195 | task_object.outcome = Task.OUTCOME_CACHED | 195 | task_object.outcome = Task.OUTCOME_CACHED |
196 | object_changed = True | 196 | object_changed = True |
197 | 197 | ||