Commit bb75efc0 authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

Fixed typo in GeoDjango deprecation error message

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10487 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 800b6cfb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ from django.contrib.gis.models import get_srid_info

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):