diff options
Diffstat (limited to 'bitbake/lib/bb/fetch2/perforce.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/perforce.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/perforce.py b/bitbake/lib/bb/fetch2/perforce.py index e98440f59f..583dfb93bf 100644 --- a/bitbake/lib/bb/fetch2/perforce.py +++ b/bitbake/lib/bb/fetch2/perforce.py @@ -30,11 +30,11 @@ import os import logging import bb from bb import data -from bb.fetch2 import Fetch +from bb.fetch2 import FetchMethod from bb.fetch2 import FetchError from bb.fetch2 import logger -class Perforce(Fetch): +class Perforce(FetchMethod): def supports(self, url, ud, d): return ud.type in ['p4'] |