Skip to content

Commit 95130c0

Browse files
authored
Merge pull request #2639 from djarecka/heudiconv_tmp
changing Node._output_dir to realpath
2 parents 6c00f85 + d51b534 commit 95130c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/pipeline/engine/nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def output_dir(self):
275275
params_str = [_parameterization_dir(p) for p in params_str]
276276
outputdir = op.join(outputdir, *params_str)
277277

278-
self._output_dir = op.abspath(op.join(outputdir, self.name))
278+
self._output_dir = op.realpath(op.join(outputdir, self.name))
279279
return self._output_dir
280280

281281
def set_input(self, parameter, val):

0 commit comments

Comments
 (0)