diff --git a/netdb.i2p2/app.py b/netdb.i2p2/app.py index 0e0ae6b450d5c2bb94739c174b38258490a30cd3..058c747978c7605ca254a0dcb916ad954e2c4473 100644 --- a/netdb.i2p2/app.py +++ b/netdb.i2p2/app.py @@ -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>'