| Index: appengine/findit/crash/findit_for_clusterfuzz.py
|
| diff --git a/appengine/findit/crash/findit_for_clusterfuzz.py b/appengine/findit/crash/findit_for_clusterfuzz.py
|
| index da2af6d80d52f6fd751f6405c655b44c4659b671..9e401f540be92bc3b157c3d99588339d81b70f8f 100644
|
| --- a/appengine/findit/crash/findit_for_clusterfuzz.py
|
| +++ b/appengine/findit/crash/findit_for_clusterfuzz.py
|
| @@ -15,8 +15,8 @@ class FinditForClusterfuzz(Findit): # pragma: no cover
|
| def _ClientID(cls):
|
| return CrashClient.CLUSTERFUZZ
|
|
|
| - def __init__(self, repository):
|
| - super(FinditForClusterfuzz, self).__init__(repository)
|
| + def __init__(self, get_repository):
|
| + super(FinditForClusterfuzz, self).__init__(get_repository)
|
| logging.info('Client %s is not supported by findit right now',
|
| self.client_id)
|
| raise NotImplementedError()
|
|
|