From: Bernhard Reutner-Fischer Date: Mon, 3 Jan 2011 19:57:24 +0000 (+0100) Subject: ConfHandler: commentary typo fixes X-Git-Tag: 2011-1~3041 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=641fc9bad076333a0881910d804a8f267f073515;p=openembedded-core.git ConfHandler: commentary typo fixes (Bitbake rev: 089dc31932a85455ed0fec8209d0451af4310f94) Signed-off-by: Bernhard Reutner-Fischer Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/parse/parse_py/ConfHandler.py b/bitbake/lib/bb/parse/parse_py/ConfHandler.py index 2abd2fdc25..d90f5d868e 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