diff options
Diffstat (limited to 'bitbake/lib/bb/fetch2/wget.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/wget.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/wget.py b/bitbake/lib/bb/fetch2/wget.py index e33265e1cc..8e34b0c2bd 100644 --- a/bitbake/lib/bb/fetch2/wget.py +++ b/bitbake/lib/bb/fetch2/wget.py @@ -30,9 +30,9 @@ import logging import bb import urllib from bb import data -from bb.fetch2 import Fetch, FetchError, encodeurl, decodeurl, logger, runfetchcmd +from bb.fetch2 import FetchMethod, FetchError, encodeurl, decodeurl, logger, runfetchcmd -class Wget(Fetch): +class Wget(FetchMethod): """Class to fetch urls via 'wget'""" def supports(self, url, ud, d): """ |