From: Holger Hans Peter Freyther Date: Tue, 3 Nov 2009 13:45:02 +0000 (+0100) Subject: base.bbclass: Better error message in case the Config Parser fails X-Git-Tag: Release-2010-05/1~1803^2~12 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c724ad44d6adfda201f33c15378cab8d9e7ee902;p=openembedded.git base.bbclass: Better error message in case the Config Parser fails http://patchwork.openembedded.org/patch/1088/ Tested-by: Ed Nelson --- 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)