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 50b89c4 commit b9cac5eCopy full SHA for b9cac5e
nipype/interfaces/spm/preprocess.py
@@ -1491,7 +1491,10 @@ def _list_outputs(self):
1491
filelist = ensure_list(self.inputs.apply_to_files)
1492
for f in filelist:
1493
if isinstance(f, list):
1494
- run = [fname_presuffix(in_f, prefix=self.inputs.out_prefix) for in_f in f]
+ run = [
1495
+ fname_presuffix(in_f, prefix=self.inputs.out_prefix)
1496
+ for in_f in f
1497
+ ]
1498
else:
1499
run = [fname_presuffix(f, prefix=self.inputs.out_prefix)]
1500
outputs["normalized_files"].extend(run)
0 commit comments