mirror of https://github.com/django/django.git
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:
parent
2d8d69f9ae
commit
5a4feb9ec2
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue