summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/local.py
diff options
context:
space:
mode:
authorYu Ke <ke.yu@intel.com>2011-01-18 23:03:53 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-25 12:25:47 +0000
commite05918937c515dff845fcb4c9e94f8ecbea8c957 (patch)
treec07942361428a8271af45fd53c02a1c3840aa5a8 /bitbake/lib/bb/fetch2/local.py
parent8615b0e282baadf1ac342ec38b7c79e0ac351613 (diff)
downloadpoky-e05918937c515dff845fcb4c9e94f8ecbea8c957.tar.gz
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/local.py')
-rw-r--r--bitbake/lib/bb/fetch2/local.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/local.py b/bitbake/lib/bb/fetch2/local.py
index bcb30dfc95..89fbdf6ef1 100644
--- a/bitbake/lib/bb/fetch2/local.py
+++ b/bitbake/lib/bb/fetch2/local.py
@@ -56,7 +56,7 @@ class Local(Fetch):
56 # We don't set localfile as for this fetcher the file is already local! 56 # We don't set localfile as for this fetcher the file is already local!
57 return newpath 57 return newpath
58 58
59 def go(self, url, urldata, d): 59 def download(self, url, urldata, d):
60 """Fetch urls (no-op for Local method)""" 60 """Fetch urls (no-op for Local method)"""
61 # no need to fetch local files, we'll deal with them in place. 61 # no need to fetch local files, we'll deal with them in place.
62 return 1 62 return 1