Fixed #9008 -- now use the correct library path for loading the `WinDLL` instance of the GDAL library.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9036 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Justin Bronn 2008-09-15 17:25:17 +00:00
parent fe3a560768
commit b04faa3511
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ lgdal = CDLL(lib_path)
# different calling convention.
if os.name == 'nt':
from ctypes import WinDLL
lwingdal = WinDLL(lib_name)
lwingdal = WinDLL(lib_path)
def std_call(func):
"""