瀏覽代碼

Fix SubprocessGitClient on Windows Python3.

Gary van der Merwe 10 年之前
父節點
當前提交
c9348faa6d
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      dulwich/client.py

+ 1 - 0
dulwich/client.py

@@ -683,6 +683,7 @@ class SubprocessGitClient(TraditionalGitClient):
         if self.git_command is None:
         if self.git_command is None:
             git_command = find_git_command()
             git_command = find_git_command()
         argv = git_command + [service, path]
         argv = git_command + [service, path]
+        argv = ['git', service.decode('ascii'), path]
         p = SubprocessWrapper(
         p = SubprocessWrapper(
             subprocess.Popen(argv, bufsize=0, stdin=subprocess.PIPE,
             subprocess.Popen(argv, bufsize=0, stdin=subprocess.PIPE,
                              stdout=subprocess.PIPE,
                              stdout=subprocess.PIPE,