Browse Source

clean error message

moritan 9 years ago
parent
commit
404560fbb8
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      searx/rest-server.py

+ 3
- 3
searx/rest-server.py View File

10
 from searx.languages import language_codes
10
 from searx.languages import language_codes
11
 from searx.plugins import plugins
11
 from searx.plugins import plugins
12
 
12
 
13
-app = Flask(__name__, static_url_path="")
13
+app = Flask(__name__, static_url_path="/static/themes/ember")
14
 
14
 
15
 
15
 
16
 @app.errorhandler(400)
16
 @app.errorhandler(400)
17
 def not_found(error):
17
 def not_found(error):
18
-    return make_response(jsonify({'msg': 'Bad request', 'error': error}), 400)
18
+    return make_response(jsonify({'name': error.name, 'description': error.description}), 400)
19
 
19
 
20
 
20
 
21
 @app.errorhandler(404)
21
 @app.errorhandler(404)
22
 def not_found(error):
22
 def not_found(error):
23
-    return make_response(jsonify({'msg': 'Not found', 'error': error}), 404)
23
+    return make_response(jsonify({'name': error.name, 'description': error.description}), 404)
24
 
24
 
25
 
25
 
26
 @app.route('/api/v1.0/search', methods=['GET', 'POST'])
26
 @app.route('/api/v1.0/search', methods=['GET', 'POST'])