Explorar el Código

Fix kwargs argument in SubprocessClient._connect.

Jelmer Vernooij hace 16 años
padre
commit
bf722a0997
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      dulwich/client.py

+ 1 - 1
dulwich/client.py

@@ -237,7 +237,7 @@ class SubprocessGitClient(GitClient):
         self._args = args
         self._kwargs = kwargs
 
-    def _connect(self, service, *args):
+    def _connect(self, service, *args, **kwargs):
         argv = [service] + list(args)
         self.proc = subprocess.Popen(argv, bufsize=0,
                                 stdin=subprocess.PIPE,