diff options
| author | Tim Graham <timograham@gmail.com> | 2017-05-30 09:39:59 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-30 09:39:59 -0400 |
| commit | c32476e5ba2f1c18758cfcffc857fa4eab37e816 (patch) | |
| tree | 03e2d26bb2496f656c783312793503df58a41cfa /django/contrib/gis | |
| parent | 9509268cea9ed1dfda5e66a25f4429a25bf40480 (diff) | |
Refs #28181 -- Corrected detection of GDAL 2.1 on Windows.
Follow up to a404f75f92971634c76330f3742261d33ccecca1.
Diffstat (limited to 'django/contrib/gis')
| -rw-r--r-- | django/contrib/gis/gdal/libgdal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/gis/gdal/libgdal.py b/django/contrib/gis/gdal/libgdal.py index 056efaf01d..96acee9f5e 100644 --- a/django/contrib/gis/gdal/libgdal.py +++ b/django/contrib/gis/gdal/libgdal.py @@ -21,7 +21,7 @@ if lib_path: lib_names = None elif os.name == 'nt': # Windows NT shared libraries - lib_names = ['gdal21', 'gdal20', 'gdal111', 'gdal110', 'gdal19'] + lib_names = ['gdal201', 'gdal20', 'gdal111', 'gdal110', 'gdal19'] elif os.name == 'posix': # *NIX library names. lib_names = ['gdal', 'GDAL', 'gdal2.1.0', 'gdal2.0.0', 'gdal1.11.0', 'gdal1.10.0', 'gdal1.9.0'] |
