summaryrefslogtreecommitdiffhomepage
path: root/test/python/mirror/wsgi.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/python/mirror/wsgi.py')
-rw-r--r--test/python/mirror/wsgi.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/python/mirror/wsgi.py b/test/python/mirror/wsgi.py
index e4df67ec..eb1fb922 100644
--- a/test/python/mirror/wsgi.py
+++ b/test/python/mirror/wsgi.py
@@ -4,7 +4,6 @@ def application(environ, start_response):
body = bytes(environ['wsgi.input'].read(content_length))
start_response('200', [
- ('Content-Type', environ.get('CONTENT_TYPE')),
('Content-Length', str(len(body)))
])
return [body]