summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorZygmunt Krynicki <zygmunt.krynicki@huawei.com>2022-02-19 17:40:09 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-02-20 16:45:24 +0000
commit50cd76495d92b04b30098b2a77f78f7fbc0134fc (patch)
treefe56f69876830b866163c93ffe5b2caf02753e60 /bitbake
parent2f1555fa7a897a3345b79b3058c6523992ef232f (diff)
downloadpoky-50cd76495d92b04b30098b2a77f78f7fbc0134fc.tar.gz
bitbake: event: Fix typo "asynchronous" and "occasionally"
(Bitbake rev: bb60472ff41b583b7b3a65e7ddccd4554840952b) Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@huawei.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/event.py4
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):
764class MetadataEvent(Event): 764class 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)