Browse Source

Fix SubprocessGitClient on Windows Python3.

Gary van der Merwe 10 năm trước cách đây
mục cha
commit
c9348faa6d
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      dulwich/client.py

+ 1 - 0
dulwich/client.py

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