From b34c913d2eb396b6eb845c8573edbd4002777e74 Mon Sep 17 00:00:00 2001
From: AlexeyAB <alexeyab84@gmail.com>
Date: Wed, 16 May 2018 12:16:41 +0000
Subject: [PATCH] darknet.py change libdarknet.so to darknet.so

---
 darknet.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/darknet.py b/darknet.py
index 2deff4f..9888c22 100644
--- a/darknet.py
+++ b/darknet.py
@@ -118,7 +118,7 @@
             lib = CDLL(winGPUdll, RTLD_GLOBAL)
             print("Environment variables indicated a CPU run, but we didn't find `"+winNoGPUdll+"`. Trying a GPU run anyway.")
 else:
-    lib = CDLL("./libdarknet.so", RTLD_GLOBAL)
+    lib = CDLL("./darknet.so", RTLD_GLOBAL)
 lib.network_width.argtypes = [c_void_p]
 lib.network_width.restype = c_int
 lib.network_height.argtypes = [c_void_p]

--
Gitblit v1.10.0