diff --git a/mocha.py b/mocha.py index 4d0e275..a0169ed 100644 --- a/mocha.py +++ b/mocha.py @@ -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)))]