summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/git.py
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linux.intel.com>2015-06-30 09:39:11 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-07-09 18:00:21 +0100
commitf9ea480e6c26fea46c3011c4e9d0e2de3d5c81b4 (patch)
treec71249a10ad945704694fbeea0bf9061e6c885e5 /bitbake/lib/bb/fetch2/git.py
parentbf6c21c38b9d07481dd34f7a0a2c37f800295ccb (diff)
downloadpoky-f9ea480e6c26fea46c3011c4e9d0e2de3d5c81b4.tar.gz
bitbake: fetch2: Add fetch parameter to checkstatusyocto-1.9_M1
In order to pass connection cache object to checkstatus function add fetch parameter. (Bitbake rev: fbb9c6f5538084e125b58118a86968908e6f895b) Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/git.py')
-rw-r--r--bitbake/lib/bb/fetch2/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
index 2e5388221f..0abd67924b 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -423,7 +423,7 @@ class Git(FetchMethod):
423 else: 423 else:
424 return True, str(rev) 424 return True, str(rev)
425 425
426 def checkstatus(self, ud, d): 426 def checkstatus(self, fetch, ud, d):
427 try: 427 try:
428 self._lsremote(ud, d, "") 428 self._lsremote(ud, d, "")
429 return True 429 return True