From e05918937c515dff845fcb4c9e94f8ecbea8c957 Mon Sep 17 00:00:00 2001 From: Yu Ke Date: Tue, 18 Jan 2011 23:03:53 +0800 Subject: bb.fetch2: rename "go" with "download" to better reflect its functionality no functional change Signed-off-by: Yu Ke --- bitbake/lib/bb/fetch2/wget.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bitbake/lib/bb/fetch2/wget.py') diff --git a/bitbake/lib/bb/fetch2/wget.py b/bitbake/lib/bb/fetch2/wget.py index cf36ccad0..91cfafb5b 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) -- cgit v1.2.3