Skip to content

Commit 2954fb5

Browse files
committed
Proper list conversion. Closes #811
1 parent db81db1 commit 2954fb5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

nipype/interfaces/fsl/model.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1272,7 +1272,8 @@ def _list_outputs(self):
12721272
class MELODICInputSpec(FSLCommandInputSpec):
12731273
in_files = InputMultiPath(
12741274
File(exists=True), argstr="-i %s", mandatory=True, position=0,
1275-
desc="input file names (either single file name or a list)")
1275+
desc="input file names (either single file name or a list)",
1276+
sep=",")
12761277
out_dir = Directory(
12771278
argstr="-o %s", desc="output directory name", genfile=True)
12781279
mask = File(exists=True, argstr="-m %s",

0 commit comments

Comments
 (0)