diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2011-01-03 20:57:24 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2011-01-04 15:00:25 +0000 |
commit | 641fc9bad076333a0881910d804a8f267f073515 (patch) | |
tree | 4d46a55949b2b81f3903495763862b4bcd4c7b08 /bitbake | |
parent | c0a11db8777eab89bcae3482fcc075a8f6a6aa2a (diff) | |
download | openembedded-core-641fc9bad076333a0881910d804a8f267f073515.tar.gz openembedded-core-641fc9bad076333a0881910d804a8f267f073515.tar.bz2 openembedded-core-641fc9bad076333a0881910d804a8f267f073515.tar.xz openembedded-core-641fc9bad076333a0881910d804a8f267f073515.zip |
ConfHandler: commentary typo fixes
(Bitbake rev: 089dc31932a85455ed0fec8209d0451af4310f94)
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/parse/parse_py/ConfHandler.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/ConfHandler.py b/bitbake/lib/bb/parse/parse_py/ConfHandler.py index 2abd2fdc2..d90f5d868 100644 --- a/bitbake/lib/bb/parse/parse_py/ConfHandler.py +++ b/bitbake/lib/bb/parse/parse_py/ConfHandler.py @@ -46,10 +46,10 @@ def supports(fn, d): def include(oldfn, fn, data, error_out): """ - - error_out If True a ParseError will be reaised if the to be included + error_out If True a ParseError will be raised if the to be included + config-files could not be included. """ - if oldfn == fn: # prevent infinate recursion + if oldfn == fn: # prevent infinite recursion return None import bb |