diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-11 12:16:44 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-11 12:16:44 +0000 |
commit | 05d8b6422dc3154b2890f8db3f919faec4457d6f (patch) | |
tree | 8c2cae977184b7be4a99aadc7acc6b8984842d04 /bitbake/lib/bb/fetch2 | |
parent | ea70c4362fdb81bc9467975c145c48196c45e3af (diff) | |
download | poky-05d8b6422dc3154b2890f8db3f919faec4457d6f.tar.gz |
bitbake/fetch2/wget: Fix missing string parameter reference
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2')
-rw-r--r-- | bitbake/lib/bb/fetch2/wget.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
77 | # Sanity check since wget can pretend it succeed when it didn't | 77 | # Sanity check since wget can pretend it succeed when it didn't |
78 | # Also, this used to happen if sourceforge sent us to the mirror page | 78 | # Also, this used to happen if sourceforge sent us to the mirror page |
79 | if not os.path.exists(ud.localpath) and not checkonly: | 79 | if not os.path.exists(ud.localpath) and not checkonly: |
80 | raise FetchError("The fetch command returned success but %s doesn't exist?!" % (uri, ud.localpath), uri) | 80 | raise FetchError("The fetch command returned success for url %s but %s doesn't exist?!" % (uri, ud.localpath), uri) |
81 | 81 | ||
82 | localdata = data.createCopy(d) | 82 | localdata = data.createCopy(d) |
83 | data.setVar('OVERRIDES', "wget:" + data.getVar('OVERRIDES', localdata), localdata) | 83 | data.setVar('OVERRIDES', "wget:" + data.getVar('OVERRIDES', localdata), localdata) |