summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2/__init__.py')
-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 e2ceca0d86..3eabba16b3 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -832,7 +832,7 @@ def runfetchcmd(cmd, d, quiet=False, cleanup=None, log=None):
832 output = "output:\n%s" % e.stderr 832 output = "output:\n%s" % e.stderr
833 else: 833 else:
834 output = "no output" 834 output = "no output"
835 error_message = "Fetch command failed with exit code %s, %s" % (e.exitcode, output) 835 error_message = "Fetch command %s failed with exit code %s, %s" % (e.command, e.exitcode, output)
836 except bb.process.CmdError as e: 836 except bb.process.CmdError as e:
837 error_message = "Fetch command %s could not be run:\n%s" % (e.command, e.msg) 837 error_message = "Fetch command %s could not be run:\n%s" % (e.command, e.msg)
838 if not success: 838 if not success: