Skip to content

Commit a8506b8

Browse files
committed
Corrected function typo in camino ProcStreamlines
1 parent 857381f commit a8506b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/interfaces/camino/convert.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def _format_arg(self, name, spec, value):
271271
def _run_interface(self, runtime):
272272
outputroot = self.inputs.outputroot
273273
if isdefined(outputroot):
274-
actual_outputroot = self._get_actual_ouputroot(outputroot)
274+
actual_outputroot = self._get_actual_outputroot(outputroot)
275275
base, filename, ext = split_filename(actual_outputroot)
276276
if not os.path.exists(base):
277277
os.makedirs(base)
@@ -282,7 +282,7 @@ def _run_interface(self, runtime):
282282
new_runtime = super(ProcStreamlines, self)._run_interface(runtime)
283283
return new_runtime
284284

285-
def _get_actual_ouputroot(self, outputroot):
285+
def _get_actual_outputroot(self, outputroot):
286286
actual_outputroot = os.path.join('procstream_outfiles', outputroot)
287287
return actual_outputroot
288288

0 commit comments

Comments
 (0)