Selaa lähdekoodia

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

Cope with missing content type
Jelmer Vernooij 2 vuotta sitten
vanhempi
commit
c8b87dc1a4
1 muutettua tiedostoa jossa 3 lisäystä ja 1 poistoa
  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