diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2014-08-13 05:18:50 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-19 20:41:26 +0100 |
commit | 8a91a24ce99a5184c87b0b7772b2150d5b46e04f (patch) | |
tree | b3cef4484f1bec7a34890d1ada85a9e85e957e3a /bitbake/lib/bb/runqueue.py | |
parent | c3f7f4e015d740ff52b2511e6c5dc86e5bce3a96 (diff) | |
download | poky-8a91a24ce99a5184c87b0b7772b2150d5b46e04f.tar.gz |
bitbake: runqueue.py: Correct several misspellings of "notifing".
(Bitbake rev: 4e9aef14d747c37444a4fc683f9641906906afe9)
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index baaac445bd..46dca58015 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -2041,7 +2041,7 @@ class sceneQueueEvent(runQueueEvent): | |||
2041 | 2041 | ||
2042 | class runQueueTaskStarted(runQueueEvent): | 2042 | class runQueueTaskStarted(runQueueEvent): |
2043 | """ | 2043 | """ |
2044 | Event notifing a task was started | 2044 | Event notifying a task was started |
2045 | """ | 2045 | """ |
2046 | def __init__(self, task, stats, rq, noexec=False): | 2046 | def __init__(self, task, stats, rq, noexec=False): |
2047 | runQueueEvent.__init__(self, task, stats, rq) | 2047 | runQueueEvent.__init__(self, task, stats, rq) |
@@ -2049,7 +2049,7 @@ class runQueueTaskStarted(runQueueEvent): | |||
2049 | 2049 | ||
2050 | class sceneQueueTaskStarted(sceneQueueEvent): | 2050 | class sceneQueueTaskStarted(sceneQueueEvent): |
2051 | """ | 2051 | """ |
2052 | Event notifing a setscene task was started | 2052 | Event notifying a setscene task was started |
2053 | """ | 2053 | """ |
2054 | def __init__(self, task, stats, rq, noexec=False): | 2054 | def __init__(self, task, stats, rq, noexec=False): |
2055 | sceneQueueEvent.__init__(self, task, stats, rq) | 2055 | sceneQueueEvent.__init__(self, task, stats, rq) |
@@ -2057,7 +2057,7 @@ class sceneQueueTaskStarted(sceneQueueEvent): | |||
2057 | 2057 | ||
2058 | class runQueueTaskFailed(runQueueEvent): | 2058 | class runQueueTaskFailed(runQueueEvent): |
2059 | """ | 2059 | """ |
2060 | Event notifing a task failed | 2060 | Event notifying a task failed |
2061 | """ | 2061 | """ |
2062 | def __init__(self, task, stats, exitcode, rq): | 2062 | def __init__(self, task, stats, exitcode, rq): |
2063 | runQueueEvent.__init__(self, task, stats, rq) | 2063 | runQueueEvent.__init__(self, task, stats, rq) |
@@ -2065,7 +2065,7 @@ class runQueueTaskFailed(runQueueEvent): | |||
2065 | 2065 | ||
2066 | class sceneQueueTaskFailed(sceneQueueEvent): | 2066 | class sceneQueueTaskFailed(sceneQueueEvent): |
2067 | """ | 2067 | """ |
2068 | Event notifing a setscene task failed | 2068 | Event notifying a setscene task failed |
2069 | """ | 2069 | """ |
2070 | def __init__(self, task, stats, exitcode, rq): | 2070 | def __init__(self, task, stats, exitcode, rq): |
2071 | sceneQueueEvent.__init__(self, task, stats, rq) | 2071 | sceneQueueEvent.__init__(self, task, stats, rq) |
@@ -2081,17 +2081,17 @@ class sceneQueueComplete(sceneQueueEvent): | |||
2081 | 2081 | ||
2082 | class runQueueTaskCompleted(runQueueEvent): | 2082 | class runQueueTaskCompleted(runQueueEvent): |
2083 | """ | 2083 | """ |
2084 | Event notifing a task completed | 2084 | Event notifying a task completed |
2085 | """ | 2085 | """ |
2086 | 2086 | ||
2087 | class sceneQueueTaskCompleted(sceneQueueEvent): | 2087 | class sceneQueueTaskCompleted(sceneQueueEvent): |
2088 | """ | 2088 | """ |
2089 | Event notifing a setscene task completed | 2089 | Event notifying a setscene task completed |
2090 | """ | 2090 | """ |
2091 | 2091 | ||
2092 | class runQueueTaskSkipped(runQueueEvent): | 2092 | class runQueueTaskSkipped(runQueueEvent): |
2093 | """ | 2093 | """ |
2094 | Event notifing a task was skipped | 2094 | Event notifying a task was skipped |
2095 | """ | 2095 | """ |
2096 | def __init__(self, task, stats, rq, reason): | 2096 | def __init__(self, task, stats, rq, reason): |
2097 | runQueueEvent.__init__(self, task, stats, rq) | 2097 | runQueueEvent.__init__(self, task, stats, rq) |