summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-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 ee29d89b18..259b2637a6 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -884,7 +884,7 @@ def runfetchcmd(cmd, d, quiet=False, cleanup=None, log=None, workdir=None):
884 (output, errors) = bb.process.run(cmd, log=log, shell=True, stderr=subprocess.PIPE, cwd=workdir) 884 (output, errors) = bb.process.run(cmd, log=log, shell=True, stderr=subprocess.PIPE, cwd=workdir)
885 success = True 885 success = True
886 except bb.process.NotFoundError as e: 886 except bb.process.NotFoundError as e:
887 error_message = "Fetch command %s" % (e.command) 887 error_message = "Fetch command %s not found" % (e.command)
888 except bb.process.ExecutionError as e: 888 except bb.process.ExecutionError as e:
889 if e.stdout: 889 if e.stdout:
890 output = "output:\n%s\n%s" % (e.stdout, e.stderr) 890 output = "output:\n%s\n%s" % (e.stdout, e.stderr)