Ver Fonte

Support missing content type.

Jelmer Vernooij há 2 anos atrás
pai
commit
77e8313497
1 ficheiros alterados com 3 adições e 1 exclusões
  1. 3 1
      dulwich/client.py

+ 3 - 1
dulwich/client.py

@@ -1943,7 +1943,9 @@ class AbstractHttpGitClient(GitClient):
             base_url = resp.redirect_location[: -len(tail)]
 
         try:
-            self.dumb = not resp.content_type.startswith("application/x-git-")
+            self.dumb = (
+                resp.content_type is None
+                or not resp.content_type.startswith("application/x-git-"))
             if not self.dumb:
                 proto = Protocol(read, None)
                 # The first line should mention the service