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
This commit is contained in:
Russell Keith-Magee 2008-09-14 06:49:28 +00:00
parent 2d8d69f9ae
commit 5a4feb9ec2
1 changed files with 1 additions and 1 deletions

View File

@ -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