Skip to content

Commit fa70f4a

Browse files
author
Lionel Butry
committed
fixed _list_outputs
1 parent a1ea55a commit fa70f4a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

nipype/interfaces/mrtrix3/utils.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1243,7 +1243,5 @@ class MaskFilter(CommandLine):
12431243

12441244
def _list_outputs(self):
12451245
outputs = self.output_spec().get()
1246-
outputs = self.output_spec().get()
1247-
inputs = self.input_spec().get()
1248-
outputs["output_image"] = self._gen_filename(inputs["input_image"], suffix="_filtered")
1246+
outputs["out_file"] = op.abspath(self.inputs.out_file)
12491247
return outputs

0 commit comments

Comments
 (0)