summaryrefslogtreecommitdiffhomepage
path: root/test/python/host/wsgi.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/python/host/wsgi.py')
-rw-r--r--test/python/host/wsgi.py13
1 files changed, 8 insertions, 5 deletions
diff --git a/test/python/host/wsgi.py b/test/python/host/wsgi.py
index db7de306..0a08bc36 100644
--- a/test/python/host/wsgi.py
+++ b/test/python/host/wsgi.py
@@ -1,7 +1,10 @@
def application(env, start_response):
- start_response('200', [
- ('Content-Length', '0'),
- ('X-Server-Name', env.get('SERVER_NAME')),
- ('X-Http-Host', str(env.get('HTTP_HOST')))
- ])
+ start_response(
+ '200',
+ [
+ ('Content-Length', '0'),
+ ('X-Server-Name', env.get('SERVER_NAME')),
+ ('X-Http-Host', str(env.get('HTTP_HOST'))),
+ ],
+ )
return []