Skip to content

Commit cef5203

Browse files
committed
fix: reflect change in docker wrapper
1 parent fc65be3 commit cef5203

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wrapper/fmriprep_docker.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ def merge_help(wrapper_help, target_help):
164164

165165
# Make sure we're not clobbering options we don't mean to
166166
overlap = set(w_flags).intersection(t_flags)
167-
expected_overlap = set(['h', 'version', 'w', 'output-spaces',
168-
'fs-license-file', 'fs-subjects-dir', 'use-plugin'])
167+
expected_overlap = set(['h', 'version', 'w', 'fs-license-file',
168+
'fs-subjects-dir', 'use-plugin'])
169169

170170
assert overlap == expected_overlap, "Clobbering options: {}".format(
171171
', '.join(overlap - expected_overlap))
@@ -249,7 +249,7 @@ def get_parser():
249249
g_wrap.add_argument('-w', '--work-dir', action='store', type=os.path.abspath,
250250
help='path where intermediate results should be stored')
251251
g_wrap.add_argument(
252-
'--output-spaces', nargs="+",
252+
'--output-spaces', nargs="*",
253253
help="""\
254254
Standard and non-standard spaces to resample anatomical and functional images to. \
255255
Standard spaces may be specified by the form \

0 commit comments

Comments
 (0)