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.
1 parent e7bcdca commit 8d42f06Copy full SHA for 8d42f06
heudiconv/cli/run.py
@@ -103,11 +103,11 @@ def process_extra_commands(outdir, args):
103
104
105
def help_bids():
106
- print('bids specific options can be passed after the bids flag.', file=sys.stdout)
107
- print('For example, "--bids notop".', file=sys.stdout)
108
- print('The currently supported options are:', file=sys.stdout)
+ sys.stderr.write('bids specific options can be passed after the bids flag.\n'
+ 'For example, "--bids notop".\n'
+ 'The currently supported options are:\n')
109
for option, helpstr in BIDS_OPTIONS:
110
- print('{}: {}'.format(option, helpstr), file=sys.stdout)
+ sys.stderr.write('{}: {}\n'.format(option, helpstr))
111
112
113
def main(argv=None):
0 commit comments