Skip to content
Snippets Groups Projects
Unverified Commit 70e272e8 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Remove superflous whitespace.

parent 7d628632
No related branches found
No related tags found
Loading
......@@ -26,9 +26,9 @@ def error_handler(status: int) -> Callable[..., HttpResponse]:
if status == 404:
context['message'] = _('This page does not exist. If you were redirected by a link on an external page, it is possible that that link was outdated.')
context['caption'] = _('Page not found')
context['caption'] = _('Page not found')
elif status == 500:
context['caption'] = _('Internal server error')
context['caption'] = _('Internal server error')
context['message'] = _('An unexpected error has occurred.')
return render(request, 'error.html', context, status=status)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment