Commit 24a359f0 authored by Gary Wilson Jr's avatar Gary Wilson Jr
Browse files

[1.0.X]: Fixed #10120 -- Added a `return` to a doc example, patch from andrews.

Backport of r10265 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10266 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent e4e38e85
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ This example is equivalent to::
        # View code here...
        t = loader.get_template('myapp/template.html')
        c = Context({'foo': 'bar'})
        r = HttpResponse(t.render(c),
        return HttpResponse(t.render(c),
            mimetype="application/xhtml+xml")

``get_object_or_404``