We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c51ae75 commit 8de1eacCopy full SHA for 8de1eac
CHANGES.rst
@@ -2,6 +2,7 @@ Change Log
2
==========
3
Version 7
4
----------
5
+- **7.14**: micromed uses latin-1, not utf-8
6
- **7.13**: release to pypi
7
- **7.12**: tukey from scipy.signal.windows and nan instead of NaN for numpy
8
- **7.11**: quick fix for Phillips staging import
wonambi/VERSION
@@ -1 +1 @@
1
-7.13
+7.14
wonambi/ioeeg/micromed.py
@@ -155,7 +155,7 @@ def return_markers(self):
155
if name == b'* * * Part 1 * * *':
156
continue
157
markers.append(
158
- {'name': name.decode(),
+ {'name': name.decode(encoding='latin-1'), # micromed uses latin-1, not utf-8
159
'start': start / self._s_freq,
160
'end': start / self._s_freq,
161
})
0 commit comments