summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/cookiecutters/cc_starter/views/notfound.py
blob: e8b8f26f3c527bcf3b561c7308e2c98afe199879 (plain)
1
2
3
4
5
6
7
from pyramid.view import notfound_view_config


@notfound_view_config(renderer='cc_starter:templates/404.jinja2')
def notfound_view(request):
    request.response.status = 404
    return {}