Selaa lähdekoodia

Use headers.get() to get Content-Type; improves Python3 compatibility.

Jelmer Vernooij 9 vuotta sitten
vanhempi
commit
f8856c0b24
1 muutettua tiedostoa jossa 1 lisäystä ja 4 poistoa
  1. 1 4
      dulwich/tests/compat/test_client.py

+ 1 - 4
dulwich/tests/compat/test_client.py

@@ -436,10 +436,7 @@ class GitHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
                         if len(authorization) == 2:
                             env['REMOTE_USER'] = authorization[0]
         # XXX REMOTE_IDENT
-        if self.headers.typeheader is None:
-            env['CONTENT_TYPE'] = self.headers.type
-        else:
-            env['CONTENT_TYPE'] = self.headers.typeheader
+        env['CONTENT_TYPE'] = self.headers.get('content-type')
         length = self.headers.get('content-length')
         if length:
             env['CONTENT_LENGTH'] = length