Skip to content

Commit

Permalink
Merge pull request #182 from darth3PO/master
Browse files Browse the repository at this point in the history
fix import of scipy.io.savemat in mdfreader.export_to_matlab()
  • Loading branch information
ratal authored Mar 14, 2020
2 parents b4c55ad + cbc0bdf commit c1dfcb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mdfreader/mdfreader.py
Original file line number Diff line number Diff line change
Expand Up @@ -1069,7 +1069,7 @@ def export_to_matlab(self, file_name=None):
except ImportError:
warn('hdf5storage module not found')
try:
from scipy import savemat
from scipy.io import savemat
except ImportError:
warn('scipy also module not found')
return
Expand Down

0 comments on commit c1dfcb7

Please sign in to comment.