From 422b875c6586a6548c6bf34a0851ae82198a8818 Mon Sep 17 00:00:00 2001 From: Dan Swain Date: Tue, 5 Nov 2019 15:27:09 -0500 Subject: [PATCH] Documented arguments for custom 500 error view. --- docs/ref/urls.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ref/urls.txt b/docs/ref/urls.txt index 88720189d22d5..1527a347202e1 100644 --- a/docs/ref/urls.txt +++ b/docs/ref/urls.txt @@ -192,5 +192,5 @@ that should be called in case of server errors. Server errors happen when you have runtime errors in view code. By default, this is :func:`django.views.defaults.server_error`. If you -implement a custom view, be sure it returns an -:class:`~django.http.HttpResponseServerError`. +implement a custom view, be sure it accepts a ``request`` argument and returns +an :class:`~django.http.HttpResponseServerError`.