aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2010-01-16 12:37:51 -0500
committerRobert P. J. Day <rpjday@crashcourse.ca>2010-01-16 12:37:51 -0500
commitaf80e1cef90ab66c3768d0bbc0760e0ffdbf4e93 (patch)
tree5e961a576584f8813da3408d15ab9701e08bc452 /lib/bb/fetch
parent782a22a9946c28b38850958ba560f26ce3a37ed7 (diff)
downloadbitbake-af80e1cef90ab66c3768d0bbc0760e0ffdbf4e93.tar.gz
"pserver" is not a valid type for a CVS fetch, it's now a possible
method instead. This just gets rid of a historical holdover.
Diffstat (limited to 'lib/bb/fetch')
-rw-r--r--lib/bb/fetch/cvs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/fetch/cvs.py b/lib/bb/fetch/cvs.py
index d8bd4eaf7..90a006500 100644
--- a/lib/bb/fetch/cvs.py
+++ b/lib/bb/fetch/cvs.py
@@ -41,7 +41,7 @@ class Cvs(Fetch):
"""
Check to see if a given url can be fetched with cvs.
"""
- return ud.type in ['cvs', 'pserver']
+ return ud.type in ['cvs']
def localpath(self, url, ud, d):
if not "module" in ud.parm: