summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/ssh.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-04 14:40:41 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-07 09:06:37 +0000
commit7202a77134029cb37540c785ce0161a4dd574853 (patch)
treee9b8d7d3c180260317b661ce0f325a5492d9a6db /bitbake/lib/bb/fetch2/ssh.py
parent8f2abf4a9f000d42e98c4936e393bd5033a1af48 (diff)
downloadpoky-7202a77134029cb37540c785ce0161a4dd574853.tar.gz
bitbake/fetch2: Use True instead of integer values
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/ssh.py')
-rw-r--r--bitbake/lib/bb/fetch2/ssh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/ssh.py b/bitbake/lib/bb/fetch2/ssh.py
index 8b07b3a710..081fe1335c 100644
--- a/bitbake/lib/bb/fetch2/ssh.py
+++ b/bitbake/lib/bb/fetch2/ssh.py
@@ -75,7 +75,7 @@ class SSH(FetchMethod):
75 return lpath 75 return lpath
76 76
77 def download(self, url, urldata, d): 77 def download(self, url, urldata, d):
78 dldir = data.getVar('DL_DIR', d, 1) 78 dldir = data.getVar('DL_DIR', d, True)
79 79
80 m = __pattern__.match(url) 80 m = __pattern__.match(url)
81 path = m.group('path') 81 path = m.group('path')