exception.md code sample miss 'async' prefix

This commit is contained in:
Sun Wei 2018-02-26 16:09:26 +08:00 committed by GitHub
parent b8bb77eff6
commit 23ea0b7ec9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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))
```