From 0aef540dd8866c5d76dd1edd8936343258935c47 Mon Sep 17 00:00:00 2001 From: Peter Kjellerstedt Date: Mon, 25 Nov 2013 12:41:16 +0100 Subject: bitbake: fetch2: Correct a few calls to latest_revision() In 6a48474de9505a3700863f31839a7c53c5e18a8d the url parameter to a number of functions was removed. However, not all calls to latest_revision() were fixed... (Bitbake rev: 7c94ca56b2fd85a989089f58b3dcce3172a778f2) Signed-off-by: Peter Kjellerstedt Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/bzr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/bb/fetch2/bzr.py') diff --git a/bitbake/lib/bb/fetch2/bzr.py b/bitbake/lib/bb/fetch2/bzr.py index 3caaa6fca9..03e9ac461b 100644 --- a/bitbake/lib/bb/fetch2/bzr.py +++ b/bitbake/lib/bb/fetch2/bzr.py @@ -48,7 +48,7 @@ class Bzr(FetchMethod): ud.setup_revisons(d) if not ud.revision: - ud.revision = self.latest_revision(ud.url, ud, d) + ud.revision = self.latest_revision(ud, d) ud.localfile = data.expand('bzr_%s_%s_%s.tar.gz' % (ud.host, ud.path.replace('/', '.'), ud.revision), d) -- cgit v1.2.3-54-g00ecf