]> code.ossystems Code Review - openembedded-core.git/commitdiff
ConfHandler: commentary typo fixes
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Mon, 3 Jan 2011 19:57:24 +0000 (20:57 +0100)
committerRichard Purdie <rpurdie@linux.intel.com>
Tue, 4 Jan 2011 15:00:25 +0000 (15:00 +0000)
(Bitbake rev: 089dc31932a85455ed0fec8209d0451af4310f94)

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
bitbake/lib/bb/parse/parse_py/ConfHandler.py

index 2abd2fdc2517ff4aaf04caac98f4d3e90d2c4bd6..d90f5d868e6ed689dff6668290ab82ab5cb277c1 100644 (file)
@@ -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