Commit b04faa35 authored by Justin Bronn's avatar Justin Bronn
Browse files

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

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
parent fe3a5607
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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):
    """