We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e939598 + ff5d04b commit bb6627aCopy full SHA for bb6627a
fmriprep/cli/run.py
@@ -14,7 +14,7 @@
14
import uuid
15
import warnings
16
from argparse import ArgumentParser
17
-from argparse import RawTextHelpFormatter
+from argparse import ArgumentDefaultsHelpFormatter
18
from multiprocessing import cpu_count
19
from time import strftime
20
@@ -50,7 +50,7 @@ def get_parser():
50
is_release = not any((currentv.is_devrelease, currentv.is_prerelease, currentv.is_postrelease))
51
52
parser = ArgumentParser(description='FMRIPREP: fMRI PREProcessing workflows',
53
- formatter_class=RawTextHelpFormatter)
+ formatter_class=ArgumentDefaultsHelpFormatter)
54
55
# Arguments as specified by BIDS-Apps
56
# required, positional arguments
0 commit comments