From 65c05f70c4939c58b25d6b9b21268a1c49ddedcd Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 15 Oct 2011 11:54:00 -0400 Subject: [PATCH] sadface --- httpbin/core.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/httpbin/core.py b/httpbin/core.py index d1261fc..a2e87a8 100644 --- a/httpbin/core.py +++ b/httpbin/core.py @@ -35,9 +35,8 @@ app = Flask(__name__) # ------ @app.errorhandler(500) -@filters.json def page_not_found(e): - return {'error': True, 'why': str(e)} + return ':(', 200 @app.route('/') def view_landing_page():