Author: gwilson
Date: 2007-08-01 00:52:18 -0500 (Wed, 01 Aug 2007)
New Revision: 5783
Modified:
django/trunk/docs/db-api.txt
Log:
Fixed #5037 -- Fixed use of wrong field type in a db-api docs example, thanks
ubernostrum.
Modified: django/trunk/docs/db-api.txt
===================================================================
--- django/trunk/docs/db-api.txt 2007-08-01 05:41:32 UTC (rev 5782)
+++ django/trunk/docs/db-api.txt 2007-08-01 05:52:18 UTC (rev 5783)
@@ -20,7 +20,7 @@
class Author(models.Model):
name = models.CharField(maxlength=50)
- email = models.URLField()
+ email = models.EmailField()
def __unicode__(self):
return self.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
-~----------~----~----~----~------~----~------~--~---