-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Roland Ferger
committed
May 11, 2018
1 parent
9c61f44
commit 65d86c0
Showing
3 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,8 +19,8 @@ | |
# 3) Explicitly states which classes and functions in PyPL2 are meant to be public | ||
# parts of the API. | ||
|
||
from pypl2lib import PL2FileInfo, PL2AnalogChannelInfo, PL2SpikeChannelInfo, PL2DigitalChannelInfo, PyPL2FileReader | ||
from pypl2api import pl2_ad, pl2_spikes, pl2_events, pl2_info | ||
from .pypl2lib import PL2FileInfo, PL2AnalogChannelInfo, PL2SpikeChannelInfo, PL2DigitalChannelInfo, PyPL2FileReader | ||
from .pypl2api import pl2_ad, pl2_spikes, pl2_events, pl2_info | ||
|
||
__author__ = 'Chris Heydrick ([email protected])' | ||
__version__ = '1.1.0' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -120,10 +120,10 @@ def __init__(self, pl2_dll_path = 'bin'): | |
try: | ||
self.pl2_dll = CDLL(self.pl2_dll_file) | ||
except (WindowsError): | ||
print "Error: Can't load PL2FileReader.dll at: " + self.pl2_dll_file | ||
print "PL2FileReader.dll is bundled with the C++ PL2 Offline Files SDK" | ||
print "located on the Plexon Inc website: www.plexon.com" | ||
print "Contact Plexon Support for more information: [email protected]" | ||
print("Error: Can't load PL2FileReader.dll at: " + self.pl2_dll_file) | ||
print("PL2FileReader.dll is bundled with the C++ PL2 Offline Files SDK") | ||
print("located on the Plexon Inc website: www.plexon.com") | ||
print("Contact Plexon Support for more information: [email protected]") | ||
|
||
def pl2_open_file(self, pl2_file): | ||
""" | ||
|