Merge pull request #1581 from nadavge/patch-1

Fix name mismatch in apierrors page
This commit is contained in:
David Lord 2016-01-25 23:25:52 -08:00
commit 08f843fa75

View file

@ -47,7 +47,7 @@ At that point views can raise that error, but it would immediately result
in an internal server error. The reason for this is that there is no
handler registered for this error class. That however is easy to add::
@app.errorhandler(InvalidAPIUsage)
@app.errorhandler(InvalidUsage)
def handle_invalid_usage(error):
response = jsonify(error.to_dict())
response.status_code = error.status_code