Update dispatch.py

This commit is contained in:
Chris Hutchison 2018-04-19 01:03:07 -04:00 committed by GitHub
parent 648ecc1138
commit 524cd84d2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@ class Dispatcher(DispatcherMiddleware):
def default(self, environ, start_response):
#resp = Response("\n".join(self.sso.keys()),
# 404, content_type="text/plain")
Response("Up and running", 404, content_type="text/plain")
resp = Response("Up and running", 404, content_type="text/plain")
return resp(environ, start_response)