Skip to content

Commit 68c0c09

Browse files
committed
modify newpath to out_path
1 parent 76c934d commit 68c0c09

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dmriprep/interfaces/images.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def _run_interface(self, runtime):
4040
self._results['out_file'] = extract_b0(
4141
self.inputs.in_file,
4242
self.inputs.b0_ixs,
43-
newpath=runtime.cwd)
43+
out_path=runtime.cwd)
4444
return runtime
4545

4646

@@ -75,10 +75,10 @@ def _run_interface(self, runtime):
7575
self._results['out_b0s'] = rescale_b0(
7676
self.inputs.in_file,
7777
self.inputs.mask_file,
78-
newpath=runtime.cwd
78+
out_path=runtime.cwd
7979
)
8080
self._results['out_ref'] = median(
8181
self._results['out_b0s'],
82-
newpath=runtime.cwd
82+
out_path=runtime.cwd
8383
)
8484
return runtime

0 commit comments

Comments
 (0)