summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/fetch2/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index c8e91262a9..dbf8b50e68 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -871,7 +871,7 @@ def runfetchcmd(cmd, d, quiet=False, cleanup=None, log=None, workdir=None):
871 (output, errors) = bb.process.run(cmd, log=log, shell=True, stderr=subprocess.PIPE, cwd=workdir) 871 (output, errors) = bb.process.run(cmd, log=log, shell=True, stderr=subprocess.PIPE, cwd=workdir)
872 success = True 872 success = True
873 except bb.process.NotFoundError as e: 873 except bb.process.NotFoundError as e:
874 error_message = "Fetch command %s" % (e.command) 874 error_message = "Fetch command %s not found" % (e.command)
875 except bb.process.ExecutionError as e: 875 except bb.process.ExecutionError as e:
876 if e.stdout: 876 if e.stdout:
877 output = "output:\n%s\n%s" % (e.stdout, e.stderr) 877 output = "output:\n%s\n%s" % (e.stdout, e.stderr)