diff options
-rw-r--r-- | bitbake/lib/bb/event.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index 0454c75332..89215e3dea 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py | |||
@@ -40,7 +40,7 @@ class HeartbeatEvent(Event): | |||
40 | """Triggered at regular time intervals of 10 seconds. Other events can fire much more often | 40 | """Triggered at regular time intervals of 10 seconds. Other events can fire much more often |
41 | (runQueueTaskStarted when there are many short tasks) or not at all for long periods | 41 | (runQueueTaskStarted when there are many short tasks) or not at all for long periods |
42 | of time (again runQueueTaskStarted, when there is just one long-running task), so this | 42 | of time (again runQueueTaskStarted, when there is just one long-running task), so this |
43 | event is more suitable for doing some task-independent work occassionally.""" | 43 | event is more suitable for doing some task-independent work occasionally.""" |
44 | def __init__(self, time): | 44 | def __init__(self, time): |
45 | Event.__init__(self) | 45 | Event.__init__(self) |
46 | self.time = time | 46 | self.time = time |
@@ -764,7 +764,7 @@ class LogHandler(logging.Handler): | |||
764 | class MetadataEvent(Event): | 764 | class MetadataEvent(Event): |
765 | """ | 765 | """ |
766 | Generic event that target for OE-Core classes | 766 | Generic event that target for OE-Core classes |
767 | to report information during asynchrous execution | 767 | to report information during asynchronous execution |
768 | """ | 768 | """ |
769 | def __init__(self, eventtype, eventdata): | 769 | def __init__(self, eventtype, eventdata): |
770 | Event.__init__(self) | 770 | Event.__init__(self) |