Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Download correct ddl for 64 system on windows with Plexon #1350

Merged
merged 9 commits into from
Dec 6, 2023
Prev Previous commit
Next Next commit
Update neo/rawio/plexon2rawio/plexon2rawio.py
  • Loading branch information
h-mayorquin authored Nov 17, 2023
commit 0754b7bfd911a0a625bb53d79688aeec451d9e4b
2 changes: 1 addition & 1 deletion neo/rawio/plexon2rawio/plexon2rawio.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def __init__(self, filename, pl2_dll_file_path=None):
pl2_dll_folder.mkdir(exist_ok=True)
pl2_dll_file_path = pl2_dll_folder / file_name

if not pl2_dll_file_path.exists():
if pl2_dll_file_path.exists():
# I think this warning should be removed
# Warnings should provide a solution but this is just a reminder to the user of normal behavior
# Nothing to do
Expand Down
Loading