summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse/parse_py/BBHandler.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/parse/parse_py/BBHandler.py')
-rw-r--r--bitbake/lib/bb/parse/parse_py/BBHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/BBHandler.py b/bitbake/lib/bb/parse/parse_py/BBHandler.py
index cc8bc92e1d..583a71c0ba 100644
--- a/bitbake/lib/bb/parse/parse_py/BBHandler.py
+++ b/bitbake/lib/bb/parse/parse_py/BBHandler.py
@@ -116,7 +116,7 @@ def handle(fn, d, include = 0):
116 f = open(j, 'r') 116 f = open(j, 'r')
117 break 117 break
118 if f is None: 118 if f is None:
119 raise IOError("file not found") 119 raise IOError("file %s not found" % fn)
120 else: 120 else:
121 f = open(fn,'r') 121 f = open(fn,'r')
122 abs_fn = fn 122 abs_fn = fn