diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2009-11-03 14:45:02 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2009-11-03 14:45:02 +0100 |
commit | c724ad44d6adfda201f33c15378cab8d9e7ee902 (patch) | |
tree | 194c9a55fdca9394b45d999ebfe980ebd0779102 /classes/base.bbclass | |
parent | c510866574d65798eef3ef36318457b41cf542c0 (diff) |
base.bbclass: Better error message in case the Config Parser fails
http://patchwork.openembedded.org/patch/1088/
Tested-by: Ed Nelson <enelson1000@comcast.net>
Diffstat (limited to 'classes/base.bbclass')
-rw-r--r-- | classes/base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass index d29ba4bfcf..89ee917d20 100644 --- a/classes/base.bbclass +++ b/classes/base.bbclass @@ -661,7 +661,7 @@ python base_do_fetch() { bb.note("No conf/checksums.ini found, not checking checksums") return except: - bb.note("Creating the CheckSum parser failed") + bb.note("Creating the CheckSum parser failed: %s:%s" % (sys.exc_info()[0], sys.exc_info()[1])) return pv = bb.data.getVar('PV', d, True) |