1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 00:20:08 +00:00

bitbake: Improve error message for missing class files

This commit is contained in:
Richard Purdie
2008-11-06 00:12:31 +00:00
parent 4ba6a52d7e
commit b6b37f065c
3 changed files with 3 additions and 5 deletions
-2
View File
@@ -540,8 +540,6 @@ class BBCooker:
except IOError, e:
bb.msg.fatal(bb.msg.domain.Parsing, "Error when parsing %s: %s" % (afile, str(e)))
except IOError:
bb.msg.fatal(bb.msg.domain.Parsing, "Unable to open %s" % afile )
except bb.parse.ParseError, details:
bb.msg.fatal(bb.msg.domain.Parsing, "Unable to parse %s (%s)" % (afile, details) )