Author: kmtracey
Date: 2010-06-17 13:29:27 -0500 (Thu, 17 Jun 2010)
New Revision: 13355

Modified:
   django/trunk/docs/ref/models/instances.txt
Log:
Fixed #13778: Removed a stray colon in a code example. Thanks canassa.


Modified: django/trunk/docs/ref/models/instances.txt
===================================================================
--- django/trunk/docs/ref/models/instances.txt  2010-06-16 20:48:45 UTC (rev 
13354)
+++ django/trunk/docs/ref/models/instances.txt  2010-06-17 18:29:27 UTC (rev 
13355)
@@ -109,7 +109,7 @@
 
     from django.core.validators import ValidationError, NON_FIELD_ERRORS
     try:
-        article.full_clean():
+        article.full_clean()
     except ValidationError, e:
         non_field_errors = e.message_dict[NON_FIELD_ERRORS]
 

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to