aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch2/wget.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-11 12:16:44 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-21 13:34:01 +0000
commit841c5948deca8265391c8035eb62f40d3e77de81 (patch)
treec7cda4bbbd143c687bb4f05dbd5dc4d4b59bc113 /lib/bb/fetch2/wget.py
parent0c1bd6c6786b92303dfdd47265cb0f53163319c1 (diff)
downloadbitbake-841c5948deca8265391c8035eb62f40d3e77de81.tar.gz
bitbake/fetch2/wget: Fix missing string parameter reference
(From Poky rev: 05d8b6422dc3154b2890f8db3f919faec4457d6f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/fetch2/wget.py')
-rw-r--r--lib/bb/fetch2/wget.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch2/wget.py b/lib/bb/fetch2/wget.py
index cf6d5bf2a..7bd027adc 100644
--- a/lib/bb/fetch2/wget.py
+++ b/lib/bb/fetch2/wget.py
@@ -77,7 +77,7 @@ class Wget(FetchMethod):
# Sanity check since wget can pretend it succeed when it didn't
# Also, this used to happen if sourceforge sent us to the mirror page
if not os.path.exists(ud.localpath) and not checkonly:
- raise FetchError("The fetch command returned success but %s doesn't exist?!" % (uri, ud.localpath), uri)
+ raise FetchError("The fetch command returned success for url %s but %s doesn't exist?!" % (uri, ud.localpath), uri)
localdata = data.createCopy(d)
data.setVar('OVERRIDES', "wget:" + data.getVar('OVERRIDES', localdata), localdata)