From 554c892ccf16ca564e7be94f84eaa73667170e15 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sun, 1 Sep 2013 08:52:40 +0100 Subject: meta: Don't use deprecated bitbake API These have been deprecated for a long time, convert the remaining references to the correct modules and prepare for removal of the compatibility support from bitbake. (From OE-Core rev: 6a39835af2b2b3c7797fe05479341d71a3f3aaf6) Signed-off-by: Richard Purdie --- meta/lib/oe/patch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/lib') diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py index 244f6c5cf2..59abd0af19 100644 --- a/meta/lib/oe/patch.py +++ b/meta/lib/oe/patch.py @@ -331,7 +331,7 @@ class QuiltTree(PatchSet): patch = self.patches[kwargs["patch"]] if not patch: raise PatchError("No patch found at index %s in patchset." % kwargs["patch"]) - (type, host, path, user, pswd, parm) = bb.decodeurl(patch["remote"]) + (type, host, path, user, pswd, parm) = bb.fetch.decodeurl(patch["remote"]) if type == "file": import shutil if not patch.get("file") and patch.get("remote"): -- cgit v1.2.3-54-g00ecf