From 05d8b6422dc3154b2890f8db3f919faec4457d6f Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 11 Feb 2011 12:16:44 +0000 Subject: bitbake/fetch2/wget: Fix missing string parameter reference Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/wget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/bb/fetch2') diff --git a/bitbake/lib/bb/fetch2/wget.py b/bitbake/lib/bb/fetch2/wget.py index cf6d5bf2a0..7bd027adc5 100644 --- a/bitbake/lib/bb/fetch2/wget.py +++ b/bitbake/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) -- cgit v1.2.3-54-g00ecf