summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2011-01-03 20:57:24 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2011-01-04 14:56:41 +0000
commit089dc31932a85455ed0fec8209d0451af4310f94 (patch)
treeb666cf3fdef67f2f7c9a59d8faa3d2a211d657e5 /lib
parent413af91e56a6d2368f6cbe22c0e2a337e1289e55 (diff)
downloadbitbake-089dc31932a85455ed0fec8209d0451af4310f94.tar.gz
ConfHandler: commentary typo fixes
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/bb/parse/parse_py/ConfHandler.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bb/parse/parse_py/ConfHandler.py b/lib/bb/parse/parse_py/ConfHandler.py
index 2abd2fdc2..d90f5d868 100644
--- a/lib/bb/parse/parse_py/ConfHandler.py
+++ b/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