refining debugging

This commit is contained in:
Corder Guy 2018-04-06 00:58:14 -05:00
parent 4999341077
commit 1b5c959185

View file

@ -2,7 +2,7 @@ import sys
def application(environ, start_response):
status = '200 OK'
output = str(environ).encode('UTF-8')
output = str(environ['REQUEST_URI']).encode('UTF-8')
response_headers = [('Content-type', 'text/plain'),
('Content-Length', str(len(output)))]