summaryrefslogtreecommitdiff
path: root/bitbake/lib/bb/parse
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2008-11-06 00:12:31 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2008-11-06 00:12:31 +0000
commitb6b37f065c5715c04442184ca20c86258f1c1714 (patch)
tree400023feba066116e83b9bb209c3814dfa80a0c1 /bitbake/lib/bb/parse
parent4ba6a52d7ec989d4960ccc11402101257ee96c67 (diff)
downloadopenembedded-core-b6b37f065c5715c04442184ca20c86258f1c1714.tar.gz
openembedded-core-b6b37f065c5715c04442184ca20c86258f1c1714.tar.bz2
openembedded-core-b6b37f065c5715c04442184ca20c86258f1c1714.tar.xz
openembedded-core-b6b37f065c5715c04442184ca20c86258f1c1714.zip
bitbake: Improve error message for missing class files
Diffstat (limited to 'bitbake/lib/bb/parse')
-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 cc8bc92e1..583a71c0b 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):
f = open(j, 'r')
break
if f is None:
- raise IOError("file not found")
+ raise IOError("file %s not found" % fn)
else:
f = open(fn,'r')
abs_fn = fn