Skip to content

Commit 0df53b6

Browse files
committed
FIX: pathlib WindowsPath not compatible with ctypes.CDLL ??
1 parent 3895e09 commit 0df53b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/eyelinkio/edf/_edf2py.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def get_lib_path():
5757
fname = find_installed_library()
5858
else:
5959
# Otherwise we will use the edfapi that we ship with eyelinkio
60-
fname = get_lib_path()
60+
fname = str(get_lib_path())
6161
edfapi = CDLL(fname)
6262

6363

0 commit comments

Comments
 (0)