summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xapp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/app.py b/app.py
index 8f32dda..6b4452a 100755
--- a/app.py
+++ b/app.py
@@ -113,8 +113,8 @@ class Application(object):
if module in self.handlers:
return self.handlers[module](self, environ, start_response, path)
- #start_response('200 OK', [('Content-Type', 'text/html')])
- #return open('static/index.html', 'r')
+ start_response('404 Not Found', [])
+ return []
if __name__ == '__main__':
import sys