Commit 5a4feb9e authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #9052: Corrected typo in file handling docs. Thanks to KiWiB0RG for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9018 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 2d8d69f9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ Consider the following model, using a ``FileField`` to store a photo::
Any ``Car`` instance will have a ``photo`` attribute that you can use to get at
the details of the attached photo::

    >>> car = Car.object.get(name="57 Chevy")
    >>> car = Car.objects.get(name="57 Chevy")
    >>> car.photo
    <ImageFieldFile: chevy.jpg>
    >>> car.photo.name