This commit is contained in:
dev
2008-03-26 18:32:59 +00:00
parent 5c227f2907
commit d280f68014

View File

@ -20,7 +20,7 @@ class Response(BaseResponse, ETagResponseMixin):
def app(environ, start_response):
"""The WSGI application that connects all together."""
req = Request(environ)
path = req.path[1:].lower()
path = req.path[1:]
if path == '':
# page
page = u'<html><head><title>NetDB</title></head><body><ul>%s</ul></body></html>'