Skip to content

Commit 494e825

Browse files
committed
fixups from #1430
1 parent 620a542 commit 494e825

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

doc/whats_new.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Detailed list of changes
4444
🧐 API and behavior changes
4545
^^^^^^^^^^^^^^^^^^^^^^^^^^^
4646

47-
- `tracksys` accepted as argument in :class:`mne_bids.BIDSPath()` by `Julius Welzel`_ (:gh:`1430`)
47+
- ``tracksys`` accepted as argument in :class:`mne_bids.BIDSPath()` by `Julius Welzel`_ (:gh:`1430`)
4848
- :func:`mne_bids.read_raw_bids()` has a new parameter ``on_ch_mismatch`` that controls behaviour when there is a mismatch between channel names in ``channels.tsv`` and the raw data; accepted values are ``'raise'`` (default), ``'reorder'``, and ``'rename'``, by `Kalle Mäkelä`_.
4949
- Column names read from ``.tsv`` are now converted from `numpy.str_` class to built-in `str` class, by `Daniel McCloy`_.
5050

mne_bids/path.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1766,7 +1766,8 @@ def get_entities_from_fname(fname, on_error="raise", verbose=None):
17661766
'space': None, \
17671767
'recording': None, \
17681768
'split': None, \
1769-
'description': None}
1769+
'description': None, \
1770+
'tracking_system': None}
17701771
"""
17711772
if on_error not in ("warn", "raise", "ignore"):
17721773
raise ValueError(

0 commit comments

Comments
 (0)