Explorar o código

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

Jelmer Vernooij %!s(int64=9) %!d(string=hai) anos
pai
achega
f8856c0b24
Modificáronse 1 ficheiros con 1 adicións e 4 borrados
  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