diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2014-08-20 08:23:27 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-25 08:57:45 +0100 |
commit | 6d08e5bb09293c03d8953831888c64d8eca889bf (patch) | |
tree | 7a2d7dff6f1db1324d84204a4c63669f59d23761 /bitbake/lib/bb/utils.py | |
parent | 91083de4cb03bcb279ede3024cd2660b6c653808 (diff) | |
download | poky-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/utils.py')
-rw-r--r-- | bitbake/lib/bb/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 4c894cbb0c..7d37a745a4 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py | |||
@@ -264,7 +264,7 @@ def _print_trace(body, line): | |||
264 | def better_compile(text, file, realfile, mode = "exec"): | 264 | def better_compile(text, file, realfile, mode = "exec"): |
265 | """ | 265 | """ |
266 | A better compile method. This method | 266 | A better compile method. This method |
267 | will print the offending lines. | 267 | will print the offending lines. |
268 | """ | 268 | """ |
269 | try: | 269 | try: |
270 | return compile(text, file, mode) | 270 | return compile(text, file, mode) |
@@ -530,7 +530,7 @@ def filter_environment(good_vars): | |||
530 | def approved_variables(): | 530 | def approved_variables(): |
531 | """ | 531 | """ |
532 | Determine and return the list of whitelisted variables which are approved | 532 | Determine and return the list of whitelisted variables which are approved |
533 | to remain in the envrionment. | 533 | to remain in the environment. |
534 | """ | 534 | """ |
535 | if 'BB_PRESERVE_ENV' in os.environ: | 535 | if 'BB_PRESERVE_ENV' in os.environ: |
536 | return os.environ.keys() | 536 | return os.environ.keys() |