소스 검색

Don't need to be passed stuff..

John Carr 16 년 전
부모
커밋
79cfca5155
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      dulwich/client.py

+ 3 - 0
dulwich/client.py

@@ -158,6 +158,9 @@ class TCPGitClient(GitClient):
 
 class SubprocessGitClient(GitClient):
 
+    def __init__(self):
+        pass
+
     def _connect(self, service, *args):
         argv = [service] + list(args)
         proc = subprocess.Popen(argv, bufsize=0,