Skip to content

Commit 09f8427

Browse files
committed
linux
1 parent f5147ca commit 09f8427

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/py_dss_interface/DSS.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def __init__(self, dll_folder_param=None, dll_by_user=None, print_dss_info=False
7676

7777
self.dll_file_path = os.path.join(self._dll_path, dll_by_user)
7878
print(f'Final Path of DLL : {self.dll_file_path} For DEBUGGING')
79-
self._dss_obj = ctypes.cdll.LoadLibrary(self.dll_file_path)
79+
self._dss_obj = ctypes.cdll.LoadLibrary(str(self.dll_file_path))
8080

8181
self.started = bool(self._dss_obj)
8282
if self.started:

0 commit comments

Comments
 (0)