]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake/fetch2/wget: Fix missing string parameter reference
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 11 Feb 2011 12:16:44 +0000 (12:16 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 11 Feb 2011 12:16:44 +0000 (12:16 +0000)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bitbake/lib/bb/fetch2/wget.py

index cf6d5bf2a0ae343c4f2be7bcd811fa260f15d706..7bd027adc5bdf39ee2225ad63641f8444297bce5 100644 (file)
@@ -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)