summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2014-08-13 05:18:50 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-19 09:06:41 +0100
commit4e9aef14d747c37444a4fc683f9641906906afe9 (patch)
tree384cc50fdeea277ae9e59d8e6aa90132843cc855 /lib
parent17fc0174f177b444815487ba67a5d623e47ee8b1 (diff)
downloadbitbake-contrib-4e9aef14d747c37444a4fc683f9641906906afe9.tar.gz
runqueue.py: Correct several misspellings of "notifing".
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/bb/runqueue.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index baaac445b..46dca5801 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -2041,7 +2041,7 @@ class sceneQueueEvent(runQueueEvent):
class runQueueTaskStarted(runQueueEvent):
"""
- Event notifing a task was started
+ Event notifying a task was started
"""
def __init__(self, task, stats, rq, noexec=False):
runQueueEvent.__init__(self, task, stats, rq)
@@ -2049,7 +2049,7 @@ class runQueueTaskStarted(runQueueEvent):
class sceneQueueTaskStarted(sceneQueueEvent):
"""
- Event notifing a setscene task was started
+ Event notifying a setscene task was started
"""
def __init__(self, task, stats, rq, noexec=False):
sceneQueueEvent.__init__(self, task, stats, rq)
@@ -2057,7 +2057,7 @@ class sceneQueueTaskStarted(sceneQueueEvent):
class runQueueTaskFailed(runQueueEvent):
"""
- Event notifing a task failed
+ Event notifying a task failed
"""
def __init__(self, task, stats, exitcode, rq):
runQueueEvent.__init__(self, task, stats, rq)
@@ -2065,7 +2065,7 @@ class runQueueTaskFailed(runQueueEvent):
class sceneQueueTaskFailed(sceneQueueEvent):
"""
- Event notifing a setscene task failed
+ Event notifying a setscene task failed
"""
def __init__(self, task, stats, exitcode, rq):
sceneQueueEvent.__init__(self, task, stats, rq)
@@ -2081,17 +2081,17 @@ class sceneQueueComplete(sceneQueueEvent):
class runQueueTaskCompleted(runQueueEvent):
"""
- Event notifing a task completed
+ Event notifying a task completed
"""
class sceneQueueTaskCompleted(sceneQueueEvent):
"""
- Event notifing a setscene task completed
+ Event notifying a setscene task completed
"""
class runQueueTaskSkipped(runQueueEvent):
"""
- Event notifing a task was skipped
+ Event notifying a task was skipped
"""
def __init__(self, task, stats, rq, reason):
runQueueEvent.__init__(self, task, stats, rq)