diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-04 10:49:27 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-07 09:06:36 +0000 |
commit | ab0dd1397491478ee6149283e5ba8775dd8cdc3b (patch) | |
tree | ab1c86ca6312cc8cea074913ac108e305e21ea71 /bitbake/lib/bb/fetch2/cvs.py | |
parent | 74b71864fed79ce60e721945c8e239b3ebf49200 (diff) | |
download | poky-ab0dd1397491478ee6149283e5ba8775dd8cdc3b.tar.gz |
bitbake/fetch2: Rename Fetch class to FetchMethod
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/cvs.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/cvs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/cvs.py b/bitbake/lib/bb/fetch2/cvs.py index d792328c25..b440ed7b17 100644 --- a/bitbake/lib/bb/fetch2/cvs.py +++ b/bitbake/lib/bb/fetch2/cvs.py | |||
@@ -30,9 +30,9 @@ import os | |||
30 | import logging | 30 | import logging |
31 | import bb | 31 | import bb |
32 | from bb import data | 32 | from bb import data |
33 | from bb.fetch2 import Fetch, FetchError, MissingParameterError, logger | 33 | from bb.fetch2 import FetchMethod, FetchError, MissingParameterError, logger |
34 | 34 | ||
35 | class Cvs(Fetch): | 35 | class Cvs(FetchMethod): |
36 | """ | 36 | """ |
37 | Class to fetch a module or modules from cvs repositories | 37 | Class to fetch a module or modules from cvs repositories |
38 | """ | 38 | """ |