Skip to content

Commit b3dacd0

Browse files
oestebaneffigies
authored andcommitted
FIX: Re-apply SignalExtraction test fix
Closes #2380 Original commit: 653f690 Original commit message: update nilearn interface to use runtime.cwd Reverted in: f4c3db7
1 parent 1c174df commit b3dacd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/nilearn.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def _run_interface(self, runtime):
106106
region_signals.astype(str)))
107107

108108
# save output
109-
self._results['out_file'] = os.path.abspath(self.inputs.out_file)
109+
self._results['out_file'] = os.path.join(runtime.cwd, self.inputs.out_file)
110110
np.savetxt(
111111
self._results['out_file'], output, fmt=b'%s', delimiter='\t')
112112
return runtime

0 commit comments

Comments
 (0)