mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-03 15:38:59 +00:00

Sync up to the same version we have on the commitfest app, which will also be required for eventual django 1.11 support.
10 lines
191 B
Python
10 lines
191 B
Python
from django.http import HttpResponseNotFound, HttpResponseServerError
|
|
|
|
|
|
def test_404(request):
|
|
return HttpResponseNotFound()
|
|
|
|
|
|
def test_500(request):
|
|
return HttpResponseServerError()
|