Skip to content

Commit c756352

Browse files
committed
Merge branch 'master' of https://github.com/nipy/nipype into nipy-master
Conflicts: nipype/interfaces/afni/preprocess.py
2 parents 899146d + fc3ad44 commit c756352

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

nipype/COMMIT_INFO.txt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
# This is an ini file that may contain information about the code state
21
[commit hash]
3-
# The line below may contain a valid hash if it has been substituted during 'git archive'
4-
archive_subst_hash=$Format:%h$
5-
# This line may be modified by the install process
6-
install_hash=
2+
archive_subst_hash = $Format:%h$
3+
install_hash = 0a89257
4+
5+

nipype/interfaces/afni/preprocess.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,9 @@ class Refit(CommandLine):
196196
outputs = {}
197197

198198
def _list_outputs(self):
199-
self.outputs["out_file"] = os.path.abspath(self.inputs.in_file)
200-
return self.outputs
199+
outputs = self.output_spec().get()
200+
outputs["out_file"] = os.path.abspath(self.inputs.in_file)
201+
return outputs
201202

202203

203204
class WarpInputSpec(AFNICommandInputSpec):

0 commit comments

Comments
 (0)