diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2012-07-18 00:38:19 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-18 12:43:50 +0100 |
commit | d5fb11747a5ca8d2e5f7cf97564a8e6ba546a638 (patch) | |
tree | 86fd095ffcc5d341be972c815e12416923ed0b1b | |
parent | 5ed19a40f407efa1e6a2043bd8e36d729968c446 (diff) | |
download | poky-d5fb11747a5ca8d2e5f7cf97564a8e6ba546a638.tar.gz |
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 <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/fetch2/svn.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
71 | command is "fetch", "update", "info" | 71 | command is "fetch", "update", "info" |
72 | """ | 72 | """ |
73 | 73 | ||
74 | proto = ud.parm.get('proto', 'svn') | 74 | proto = ud.parm.get('protocol', 'svn') |
75 | 75 | ||
76 | svn_rsh = None | 76 | svn_rsh = None |
77 | if proto == "svn+ssh" and "rsh" in ud.parm: | 77 | if proto == "svn+ssh" and "rsh" in ud.parm: |