add debug statement

This commit is contained in:
Corder Guy 2018-04-06 00:56:43 -05:00
parent d7020b5adf
commit cde18e8614

View file

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