Skip to content

Commit 48b69ba

Browse files
committed
use dll64 bits for mac
1 parent d8639b4 commit 48b69ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo/rawio/plexon2rawio/plexon2rawio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def __init__(self, filename, pl2_dll_file_path=None):
107107
# download default PL2 dll once if not yet available
108108
if pl2_dll_file_path is None:
109109
architecture = platform.architecture()[0]
110-
if architecture == "64bit" and platform.system() == "Windows":
110+
if architecture == "64bit" and platform.system() in ["Windows", "Darwin"]:
111111
file_name = "PL2FileReader64.dll"
112112
else: # Apparently wine uses the 32 bit version in linux
113113
file_name = "PL2FileReader.dll"

0 commit comments

Comments
 (0)