From bee230267a033c78f5f9c47242e480d8241c1b84 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Tue, 18 Oct 2016 22:14:00 -0400 Subject: [PATCH] Renamed windows dll for Python binding --- src/bindings/python/openalpr/openalpr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/python/openalpr/openalpr.py b/src/bindings/python/openalpr/openalpr.py index 970af66..7ecac8d 100644 --- a/src/bindings/python/openalpr/openalpr.py +++ b/src/bindings/python/openalpr/openalpr.py @@ -45,7 +45,7 @@ class Alpr(): try: # Load the .dll for Windows and the .so for Unix-based if platform.system().lower().find("windows") != -1: - self._openalprpy_lib = ctypes.cdll.LoadLibrary("openalprpy.dll") + self._openalprpy_lib = ctypes.cdll.LoadLibrary("libopenalprpy.dll") elif platform.system().lower().find("darwin") != -1: self._openalprpy_lib = ctypes.cdll.LoadLibrary("libopenalprpy.dylib") else: