From a8f231507842a8202783276f554ad42ce762c935 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 (From Poky rev: e05918937c515dff845fcb4c9e94f8ecbea8c957) Signed-off-by: Yu Ke Signed-off-by: Richard Purdie --- lib/bb/fetch2/git.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/bb/fetch2/git.py') diff --git a/lib/bb/fetch2/git.py b/lib/bb/fetch2/git.py index c62145770..c962acb10 100644 --- a/lib/bb/fetch2/git.py +++ b/lib/bb/fetch2/git.py @@ -106,7 +106,7 @@ class Git(Fetch): return True - def go(self, loc, ud, d): + def download(self, loc, ud, d): """Fetch url""" if ud.user: @@ -242,7 +242,7 @@ class Git(Fetch): if not os.path.exists(ud.clonedir): print("no repo") - self.go(None, ud, d) + self.download(None, ud, d) if not os.path.exists(ud.clonedir): logger.error("GIT repository for %s doesn't exist in %s, cannot get sortable buildnumber, using old value", url, ud.clonedir) return None @@ -250,7 +250,7 @@ class Git(Fetch): os.chdir(ud.clonedir) if not self._contains_ref(rev, d): - self.go(None, ud, d) + self.download(None, ud, d) output = runfetchcmd("%s rev-list %s -- 2> /dev/null | wc -l" % (ud.basecmd, rev), d, quiet=True) os.chdir(cwd) -- cgit 1.2.3-korg