Author: russellm
Date: 2008-09-14 01:49:28 -0500 (Sun, 14 Sep 2008)
New Revision: 9018

Modified:
   django/trunk/docs/topics/files.txt
Log:
Fixed #9052: Corrected typo in file handling docs. Thanks to KiWiB0RG for the 
report.

Modified: django/trunk/docs/topics/files.txt
===================================================================
--- django/trunk/docs/topics/files.txt  2008-09-12 16:56:09 UTC (rev 9017)
+++ django/trunk/docs/topics/files.txt  2008-09-14 06:49:28 UTC (rev 9018)
@@ -35,7 +35,7 @@
 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


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to