Files
html_cleanup/cleanup_html/views/notfound.py
2023-11-27 20:46:54 +01:00

8 lines
192 B
Python

from pyramid.view import notfound_view_config
@notfound_view_config(renderer='cleanup_html:templates/404.jinja2')
def notfound_view(request):
request.response.status = 404
return {}