From 23ea0b7ec9109df7a8f969d7dbae336d011ad0e7 Mon Sep 17 00:00:00 2001 From: Sun Wei Date: Mon, 26 Feb 2018 16:09:26 +0800 Subject: [PATCH] exception.md code sample miss 'async' prefix --- docs/sanic/exceptions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/sanic/exceptions.md b/docs/sanic/exceptions.md index 4c0888f5..79108032 100644 --- a/docs/sanic/exceptions.md +++ b/docs/sanic/exceptions.md @@ -13,7 +13,7 @@ To throw an exception, simply `raise` the relevant exception from the from sanic.exceptions import ServerError @app.route('/killme') -def i_am_ready_to_die(request): +async def i_am_ready_to_die(request): raise ServerError("Something bad happened", status_code=500) ``` @@ -24,7 +24,7 @@ from sanic.exceptions import abort from sanic.response import text @app.route('/youshallnotpass') -def no_no(request): +async def no_no(request): abort(401) # this won't happen text("OK") @@ -43,7 +43,7 @@ from sanic.response import text from sanic.exceptions import NotFound @app.exception(NotFound) -def ignore_404s(request, exception): +async def ignore_404s(request, exception): return text("Yep, I totally found the page: {}".format(request.url)) ```