refining debugging
This commit is contained in:
parent
4999341077
commit
1b5c959185
1 changed files with 1 additions and 1 deletions
2
mocha.py
2
mocha.py
|
@ -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)))]
|
||||
|
|
Reference in a new issue