diff options
| author | Richard Purdie <rpurdie@linux.intel.com> | 2008-11-06 00:12:31 +0000 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2008-11-06 00:12:31 +0000 |
| commit | b6b37f065c5715c04442184ca20c86258f1c1714 (patch) | |
| tree | 400023feba066116e83b9bb209c3814dfa80a0c1 /bitbake/lib/bb/parse/parse_py | |
| parent | 4ba6a52d7ec989d4960ccc11402101257ee96c67 (diff) | |
| download | poky-b6b37f065c5715c04442184ca20c86258f1c1714.tar.gz | |
bitbake: Improve error message for missing class files
Diffstat (limited to 'bitbake/lib/bb/parse/parse_py')
| -rw-r--r-- | bitbake/lib/bb/parse/parse_py/BBHandler.py | 2 |
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 |
