base.bbclass: Better error message in case the Config Parser fails
authorHolger Hans Peter Freyther <zecke@selfish.org>
Tue, 3 Nov 2009 13:45:02 +0000 (14:45 +0100)
committerHolger Hans Peter Freyther <zecke@selfish.org>
Tue, 3 Nov 2009 13:45:02 +0000 (14:45 +0100)
http://patchwork.openembedded.org/patch/1088/
Tested-by: Ed Nelson <enelson1000@comcast.net>
classes/base.bbclass

index d29ba4b..89ee917 100644 (file)
@@ -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)