1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 00:20:08 +00:00

bitbake/fetch2: Rename Fetch class to FetchMethod

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2011-02-04 10:49:27 +00:00
parent 74b71864fe
commit ab0dd13974
13 changed files with 29 additions and 29 deletions
+2 -2
View File
@@ -38,7 +38,7 @@ IETF secsh internet draft:
import re, os
from bb import data
from bb.fetch2 import Fetch
from bb.fetch2 import FetchMethod
from bb.fetch2 import FetchError
@@ -61,7 +61,7 @@ __pattern__ = re.compile(r'''
$
''', re.VERBOSE)
class SSH(Fetch):
class SSH(FetchMethod):
'''Class to fetch a module or modules via Secure Shell'''
def supports(self, url, urldata, d):