summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2009-02-22 06:39:55 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2009-02-22 06:39:55 +0000
commit429b57d642eeadee418d8a83ad7652133ac682ed (patch)
tree2e8d11a8415be5aa0dea57b39a199a09c8336476 /docs
parenta21e170de7c28f978b22fed934a5711814d46086 (diff)
[1.0.X] Fixed #10298 -- Corrected the example for the get_list_or_404 shortcut. Thanks to Dagur for the report.
Merge of r9857 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9867 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/http/shortcuts.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/http/shortcuts.txt b/docs/topics/http/shortcuts.txt
index b60ccdd59a..d68faee258 100644
--- a/docs/topics/http/shortcuts.txt
+++ b/docs/topics/http/shortcuts.txt
@@ -148,6 +148,6 @@ This example is equivalent to::
from django.http import Http404
def my_view(request):
- my_objects = MyModel.objects.filter(published=True)
+ my_objects = list(MyModel.objects.filter(published=True))
if not my_objects:
raise Http404