summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Bronn <jbronn@gmail.com>2008-07-10 20:33:59 +0000
committerJustin Bronn <jbronn@gmail.com>2008-07-10 20:33:59 +0000
commit314d19db6640cf66aad9bea34b3ee4b862f70e25 (patch)
tree55c1bbc9f5a06cdf1a25acf3e70b60b856d01e07
parent6d77419deb5914370822433ec01bec8b561e7620 (diff)
gis: Fixed #7705; forgot to import `get_field_name` from the ctypes prototypes. Thanks, Denis.
git-svn-id: http://code.djangoproject.com/svn/django/branches/gis@7880 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/contrib/gis/gdal/feature.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/gis/gdal/feature.py b/django/contrib/gis/gdal/feature.py
index 147564aed8..bc3857f606 100644
--- a/django/contrib/gis/gdal/feature.py
+++ b/django/contrib/gis/gdal/feature.py
@@ -8,7 +8,7 @@ from django.contrib.gis.gdal.srs import SpatialReference
from django.contrib.gis.gdal.prototypes.ds import \
destroy_feature, feature_equal, get_fd_geom_type, get_feat_geom_ref, \
get_feat_name, get_feat_field_count, get_fid, get_field_defn, \
- get_field_index
+ get_field_index, get_field_name
from django.contrib.gis.gdal.prototypes.geom import clone_geom, get_geom_srs
from django.contrib.gis.gdal.prototypes.srs import clone_srs