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>
This commit is contained in:
Bernhard Reutner-Fischer 2011-01-03 20:57:24 +01:00 committed by Richard Purdie
parent c0a11db877
commit 641fc9bad0
1 changed files with 3 additions and 3 deletions

View 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