From d5fb11747a5ca8d2e5f7cf97564a8e6ba546a638 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Wed, 18 Jul 2012 00:38:19 +0200 Subject: bitbake: fetch2/svn.py: Use protocol parameter to get the protocol * it was send in v1 of proto -> protocol changes but then wasn't in V2 http://patchwork.openembedded.org/patch/31617/ where warning about proto= was moved to shared __init__ (Bitbake rev: b2017f493ab730d804ae44ec5a168d464626d046) Signed-off-by: Martin Jansa Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/svn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib') diff --git a/bitbake/lib/bb/fetch2/svn.py b/bitbake/lib/bb/fetch2/svn.py index bc5b96b556..ea5902e05b 100644 --- a/bitbake/lib/bb/fetch2/svn.py +++ b/bitbake/lib/bb/fetch2/svn.py @@ -71,7 +71,7 @@ class Svn(FetchMethod): command is "fetch", "update", "info" """ - proto = ud.parm.get('proto', 'svn') + proto = ud.parm.get('protocol', 'svn') svn_rsh = None if proto == "svn+ssh" and "rsh" in ud.parm: -- cgit v1.2.3-54-g00ecf