diff options
Diffstat (limited to 'bitbake/lib/bb/tinfoil.py')
-rw-r--r-- | bitbake/lib/bb/tinfoil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/tinfoil.py b/bitbake/lib/bb/tinfoil.py index 27a341541a..02c0bab600 100644 --- a/bitbake/lib/bb/tinfoil.py +++ b/bitbake/lib/bb/tinfoil.py | |||
@@ -493,7 +493,7 @@ class Tinfoil: | |||
493 | Wait for an event from the server for the specified time. | 493 | Wait for an event from the server for the specified time. |
494 | A timeout of 0 means don't wait if there are no events in the queue. | 494 | A timeout of 0 means don't wait if there are no events in the queue. |
495 | Returns the next event in the queue or None if the timeout was | 495 | Returns the next event in the queue or None if the timeout was |
496 | reached. Note that in order to recieve any events you will | 496 | reached. Note that in order to receive any events you will |
497 | first need to set the internal event mask using set_event_mask() | 497 | first need to set the internal event mask using set_event_mask() |
498 | (otherwise whatever event mask the UI set up will be in effect). | 498 | (otherwise whatever event mask the UI set up will be in effect). |
499 | """ | 499 | """ |
@@ -761,7 +761,7 @@ class Tinfoil: | |||
761 | if parseprogress: | 761 | if parseprogress: |
762 | parseprogress.update(event.progress) | 762 | parseprogress.update(event.progress) |
763 | else: | 763 | else: |
764 | bb.warn("Got ProcessProgress event for someting that never started?") | 764 | bb.warn("Got ProcessProgress event for something that never started?") |
765 | continue | 765 | continue |
766 | if isinstance(event, bb.event.ProcessFinished): | 766 | if isinstance(event, bb.event.ProcessFinished): |
767 | if self.quiet > 1: | 767 | if self.quiet > 1: |