summaryrefslogtreecommitdiff
path: root/docs/quick_tour/sessions/hello_world/views/notfound.py
blob: 6d0ff4193a39ba5554df1d1c83ab4b0915f9dd46 (plain)
1
2
3
4
5
6
7
from pyramid.view import notfound_view_config


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