diff options
Diffstat (limited to 'bitbake/lib/bb/event.py')
-rw-r--r-- | bitbake/lib/bb/event.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index aa3a4471d8..456b89caff 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py | |||
@@ -89,9 +89,9 @@ def fire_ui_handlers(event, d): | |||
89 | def fire(event, d): | 89 | def fire(event, d): |
90 | """Fire off an Event""" | 90 | """Fire off an Event""" |
91 | 91 | ||
92 | # We can fire class handlers in the worker process context and this is | 92 | # We can fire class handlers in the worker process context and this is |
93 | # desired so they get the task based datastore. | 93 | # desired so they get the task based datastore. |
94 | # UI handlers need to be fired in the server context so we defer this. They | 94 | # UI handlers need to be fired in the server context so we defer this. They |
95 | # don't have a datastore so the datastore context isn't a problem. | 95 | # don't have a datastore so the datastore context isn't a problem. |
96 | 96 | ||
97 | fire_class_handlers(event, d) | 97 | fire_class_handlers(event, d) |
@@ -297,4 +297,3 @@ class DepTreeGenerated(Event): | |||
297 | def __init__(self, depgraph): | 297 | def __init__(self, depgraph): |
298 | Event.__init__(self) | 298 | Event.__init__(self) |
299 | self._depgraph = depgraph | 299 | self._depgraph = depgraph |
300 | |||