diff options
author | Yu Ke <ke.yu@intel.com> | 2011-01-18 23:03:53 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-25 12:25:47 +0000 |
commit | e05918937c515dff845fcb4c9e94f8ecbea8c957 (patch) | |
tree | c07942361428a8271af45fd53c02a1c3840aa5a8 /bitbake/lib/bb/fetch2/wget.py | |
parent | 8615b0e282baadf1ac342ec38b7c79e0ac351613 (diff) | |
download | openembedded-core-e05918937c515dff845fcb4c9e94f8ecbea8c957.tar.gz openembedded-core-e05918937c515dff845fcb4c9e94f8ecbea8c957.tar.bz2 openembedded-core-e05918937c515dff845fcb4c9e94f8ecbea8c957.zip |
bb.fetch2: rename "go" with "download" to better reflect its functionality
no functional change
Signed-off-by: Yu Ke <ke.yu@intel.com>
Diffstat (limited to 'bitbake/lib/bb/fetch2/wget.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/wget.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/wget.py b/bitbake/lib/bb/fetch2/wget.py index cf36ccad0a..91cfafb5b5 100644 --- a/bitbake/lib/bb/fetch2/wget.py +++ b/bitbake/lib/bb/fetch2/wget.py @@ -48,7 +48,7 @@ class Wget(Fetch): return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile) - def go(self, uri, ud, d, checkonly = False): + def download(self, uri, ud, d, checkonly = False): """Fetch urls""" def fetch_uri(uri, ud, d): @@ -90,4 +90,4 @@ class Wget(Fetch): def checkstatus(self, uri, ud, d): - return self.go(uri, ud, d, True) + return self.download(uri, ud, d, True) |