summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/parse')
-rw-r--r--bitbake/lib/bb/parse/parse_py/ConfHandler.py6
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 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):
46 46
47def include(oldfn, fn, data, error_out): 47def include(oldfn, fn, data, error_out):
48 """ 48 """
49 49 error_out If True a ParseError will be raised if the to be included
50 error_out If True a ParseError will be reaised if the to be included 50 config-files could not be included.
51 """ 51 """
52 if oldfn == fn: # prevent infinate recursion 52 if oldfn == fn: # prevent infinite recursion
53 return None 53 return None
54 54
55 import bb 55 import bb