From: Richard Purdie Date: Wed, 7 Dec 2016 12:07:06 +0000 (+0000) Subject: utils: Avoid traceback errors X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1aeb45abe56061f044c2347889c191d5256ff21f;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git utils: Avoid traceback errors Avoid errors like: ERROR: Exception handler error: 'NoneType' object has no attribute 'decode' Signed-off-by: Richard Purdie --- diff --git a/lib/bb/utils.py b/lib/bb/utils.py index c4b25b50ac6..9073f15ea24 100644 --- a/lib/bb/utils.py +++ b/lib/bb/utils.py @@ -378,7 +378,7 @@ def _print_exception(t, value, tb, realfile, text, context): # If the exception is from spwaning a task, let's be helpful and display # the output (which hopefully includes stderr). - if isinstance(value, subprocess.CalledProcessError): + if isinstance(value, subprocess.CalledProcessError) and value.output: error.append("Subprocess output:") error.append(value.output.decode("utf-8", errors="ignore")) finally: