|
@@ -39,6 +39,8 @@ def application(environ, start_response):
|
|
|
print 'no handler for', split
|
|
print 'no handler for', split
|
|
|
else:
|
|
else:
|
|
|
print 'split was', split
|
|
print 'split was', split
|
|
|
|
|
+ start_response('404 Not Found', [('Content-type', 'text/plain')])
|
|
|
|
|
+ return ['404 Not Found']
|
|
|
except:
|
|
except:
|
|
|
traceback.print_exc()
|
|
traceback.print_exc()
|
|
|
start_response('500 Internal Server Error', [('Content-type', 'text/plain')])
|
|
start_response('500 Internal Server Error', [('Content-type', 'text/plain')])
|