Made GeoDjango GeometryField stop accepting a 'null' keyword argument as per its deprecation in 1.5.

This commit is contained in:
Ramiro Morales 2013-06-28 22:42:10 -03:00
parent 7379d9acea
commit 425a429208
1 changed files with 0 additions and 6 deletions

View File

@ -1,7 +1,5 @@
from __future__ import unicode_literals
import warnings
from django import forms
from django.utils import six
from django.utils.translation import ugettext_lazy as _
@ -34,10 +32,6 @@ class GeometryField(forms.Field):
# defaults (e.g., allow None).
self.srid = kwargs.pop('srid', None)
self.geom_type = kwargs.pop('geom_type', self.geom_type)
if 'null' in kwargs:
kwargs.pop('null', True)
warnings.warn("Passing 'null' keyword argument to GeometryField is deprecated.",
DeprecationWarning, stacklevel=2)
super(GeometryField, self).__init__(**kwargs)
self.widget.attrs['geom_type'] = self.geom_type