From b6b37f065c5715c04442184ca20c86258f1c1714 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 6 Nov 2008 00:12:31 +0000 Subject: bitbake: Improve error message for missing class files --- bitbake/lib/bb/parse/parse_py/BBHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/bb/parse') 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 -- cgit v1.2.3