소스 검색

Fix definition.

Jelmer Vernooij 16 년 전
부모
커밋
e1c619ff4e
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 3
      dulwich/object_store.py

+ 1 - 3
dulwich/object_store.py

@@ -443,12 +443,10 @@ class MissingObjectFinder(object):
     :param object_store: Object store containing at least all objects to be 
         sent
     :param wants: SHA1s of commits to send
-    :param graph_walker: graph walker object used to see what the remote 
-        repo has and misses
     :param progress: Optional function to report progress to.
     """
 
-    def __init__(self, haves, wants, graph_walker, progress=None):
+    def __init__(self, object_store, haves, wants, progress=None):
         self.sha_done = set(haves)
         self.objects_to_send = set([(w, None, False) for w in wants])
         self.object_store = object_store