summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/event.py
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2014-08-20 08:23:27 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-25 08:57:45 +0100
commit6d08e5bb09293c03d8953831888c64d8eca889bf (patch)
tree7a2d7dff6f1db1324d84204a4c63669f59d23761 /bitbake/lib/bb/event.py
parent91083de4cb03bcb279ede3024cd2660b6c653808 (diff)
downloadpoky-6d08e5bb09293c03d8953831888c64d8eca889bf.tar.gz
bitbake: lib/bb/*.py: Typo fixes/grammar/comment fixes, nothing functional.
(Bitbake rev: 587b144ee409d444494d8d7f2d1c53ede8f7c953) 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/event.py')
-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 e2f6b9cad2..32df779786 100644
--- a/bitbake/lib/bb/event.py
+++ b/bitbake/lib/bb/event.py
@@ -598,7 +598,7 @@ class MetadataEvent(Event):
598 598
599class SanityCheck(Event): 599class SanityCheck(Event):
600 """ 600 """
601 Event to runs sanity checks, either raise errors or generate events as return status. 601 Event to run sanity checks, either raise errors or generate events as return status.
602 """ 602 """
603 def __init__(self, generateevents = True): 603 def __init__(self, generateevents = True):
604 Event.__init__(self) 604 Event.__init__(self)
@@ -606,7 +606,7 @@ class SanityCheck(Event):
606 606
607class SanityCheckPassed(Event): 607class SanityCheckPassed(Event):
608 """ 608 """
609 Event to indicate sanity check is passed 609 Event to indicate sanity check has passed
610 """ 610 """
611 611
612class SanityCheckFailed(Event): 612class SanityCheckFailed(Event):