Prechádzať zdrojové kódy

Merge pull request #1096 from jelmer/missing-content-type

Cope with missing content type
Jelmer Vernooij 2 rokov pred
rodič
commit
c8b87dc1a4
1 zmenil súbory, kde vykonal 3 pridanie a 1 odobranie
  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