Skip to content

Commit 2c863ff

Browse files
Merge pull request #1119 from samuelgarcia/fix_axonio
Small fix for axonio.
2 parents 799fe96 + 30d51d3 commit 2c863ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo/rawio/axonrawio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def _parse_header(self):
209209
for i, tag in enumerate(info['listTag']):
210210
timestamps.append(tag['lTagTime'])
211211
labels.append(str(tag['nTagType']))
212-
comments.append(clean_string(tag['sComment']))
212+
comments.append(str(clean_string(tag['sComment'])))
213213
self._raw_ev_timestamps = np.array(timestamps)
214214
self._ev_labels = np.array(labels, dtype='U')
215215
self._ev_comments = np.array(comments, dtype='U')

0 commit comments

Comments
 (0)