Author: adrian Date: 2009-04-10 11:58:47 -0500 (Fri, 10 Apr 2009) New Revision: 10487
Modified: django/trunk/django/contrib/gis/db/models/fields/__init__.py Log: Fixed typo in GeoDjango deprecation error message Modified: django/trunk/django/contrib/gis/db/models/fields/__init__.py =================================================================== --- django/trunk/django/contrib/gis/db/models/fields/__init__.py 2009-04-10 16:58:29 UTC (rev 10486) +++ django/trunk/django/contrib/gis/db/models/fields/__init__.py 2009-04-10 16:58:47 UTC (rev 10487) @@ -10,7 +10,7 @@ def deprecated_property(func): from warnings import warn - warn('This attribute has been deprecated, pleas use "%s" instead.' % func.__name__[1:]) + warn('This attribute has been deprecated, please use "%s" instead.' % func.__name__[1:]) return property(func) class GeometryField(SpatialBackend.Field): --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to django-updates@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 -~----------~----~----~----~------~----~------~--~---