From e161e4ff1176acb1b3636e3f93280055185d3d78 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 24 Jun 2013 07:00:53 -0400 Subject: [PATCH] Clarified get_list_or_404 docs, refs #14150. --- docs/topics/http/shortcuts.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/topics/http/shortcuts.txt b/docs/topics/http/shortcuts.txt index 52a2935977..5c8725172a 100644 --- a/docs/topics/http/shortcuts.txt +++ b/docs/topics/http/shortcuts.txt @@ -277,8 +277,8 @@ will be raised if more than one object is found. .. function:: get_list_or_404(klass, *args, **kwargs) Returns the result of :meth:`~django.db.models.query.QuerySet.filter()` on a - given model manager, raising :class:`~django.http.Http404` if the resulting - list is empty. + given model manager cast to a list, raising :class:`~django.http.Http404` if + the resulting list is empty. Required arguments ------------------