From: Richard Purdie Date: Thu, 14 Oct 2021 10:54:59 +0000 (+0100) Subject: patch: Use repr() with exceptions instead of str() X-Git-Tag: uninative-3.5~1220 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=5b285796b618623289992faea1282f1822335239;p=openembedded-core.git patch: Use repr() with exceptions instead of str() This gives more meaningful errors. Signed-off-by: Richard Purdie --- diff --git a/meta/classes/patch.bbclass b/meta/classes/patch.bbclass index 87bcaf91a8..fdf3c633bc 100644 --- a/meta/classes/patch.bbclass +++ b/meta/classes/patch.bbclass @@ -150,12 +150,12 @@ python patch_do_patch() { patchset.Import({"file":local, "strippath": parm['striplevel']}, True) except Exception as exc: bb.utils.remove(process_tmpdir, True) - bb.fatal("Importing patch '%s' with striplevel '%s'\n%s" % (parm['patchname'], parm['striplevel'], str(exc))) + bb.fatal("Importing patch '%s' with striplevel '%s'\n%s" % (parm['patchname'], parm['striplevel'], repr(exc))) try: resolver.Resolve() except bb.BBHandledException as e: bb.utils.remove(process_tmpdir, True) - bb.fatal("Applying patch '%s' on target directory '%s'\n%s" % (parm['patchname'], patchdir, str(e))) + bb.fatal("Applying patch '%s' on target directory '%s'\n%s" % (parm['patchname'], patchdir, repr(e))) bb.utils.remove(process_tmpdir, True) del os.environ['TMPDIR']