diff options
author | Phil Blundell <pb@pbcl.net> | 2016-01-31 13:51:28 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-01 11:20:42 +0000 |
commit | a4a5d1f3232821ea2695ba5e48ddfeb30ee7ea8d (patch) | |
tree | 700dbc32804d2a3ed9bb6ca185b275bb37fefae5 /bitbake/lib/bb/cooker.py | |
parent | 8f6b9c75a799e9005393bf06d945e2fb0634a265 (diff) | |
download | poky-a4a5d1f3232821ea2695ba5e48ddfeb30ee7ea8d.tar.gz |
bitbake: cooker, bitbake-worker: Fix spelling of "received"
I before E, except after C...
(Bitbake rev: 14c9593265f7469cb8a205a46f845ac7491246df)
Signed-off-by: Phil Blundell <pb@pbcl.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 1f4174f77f..edd682bf0a 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -242,9 +242,9 @@ class BBCooker: | |||
242 | 242 | ||
243 | def sigterm_exception(self, signum, stackframe): | 243 | def sigterm_exception(self, signum, stackframe): |
244 | if signum == signal.SIGTERM: | 244 | if signum == signal.SIGTERM: |
245 | bb.warn("Cooker recieved SIGTERM, shutting down...") | 245 | bb.warn("Cooker received SIGTERM, shutting down...") |
246 | elif signum == signal.SIGHUP: | 246 | elif signum == signal.SIGHUP: |
247 | bb.warn("Cooker recieved SIGHUP, shutting down...") | 247 | bb.warn("Cooker received SIGHUP, shutting down...") |
248 | self.state = state.forceshutdown | 248 | self.state = state.forceshutdown |
249 | 249 | ||
250 | def setFeatures(self, features): | 250 | def setFeatures(self, features): |