File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 26
26
27
27
try :
28
28
from ._version import __version__
29
- except ImportError :
29
+ except ImportError : # pragma: no cover
30
30
__version__ = "0+unknown"
31
31
32
32
__copyright__ = "Copyright 2019, Center for Reproducible Neuroscience, Stanford University"
Original file line number Diff line number Diff line change @@ -215,11 +215,10 @@ def get_parser():
215
215
help = "disable sub-millimeter (hires) reconstruction" ,
216
216
)
217
217
g_surfs .add_argument (
218
- "--msm-sulc" ,
219
- "--msmsulc" ,
220
- action = "store_true" ,
218
+ "--no-msm" ,
219
+ action = "store_false" ,
221
220
dest = "msm_sulc" ,
222
- help = "Enable Multimodal Surface Matching surface registration."
221
+ help = "Disable Multimodal Surface Matching surface registration."
223
222
)
224
223
g_surfs_xor = g_surfs .add_mutually_exclusive_group ()
225
224
You can’t perform that action at this time.
0 commit comments