Skip to content

Commit f061ee7

Browse files
committed
fix:import utils needed one more dot
1 parent 4623101 commit f061ee7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

nipype/interfaces/spm/preprocess.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
from .base import (SPMCommand, scans_for_fname,
2727
func_is_3d, Info,
2828
scans_for_fnames, SPMCommandInputSpec)
29-
from ..utils.filemanip import (fname_presuffix, filename_to_list,
30-
list_to_filename, split_filename)
29+
from ...utils.filemanip import (fname_presuffix, filename_to_list,
30+
list_to_filename, split_filename)
3131

3232

3333
class SliceTimingInputSpec(SPMCommandInputSpec):

nipype/interfaces/spm/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
BaseInterfaceInputSpec, isdefined,
1010
OutputMultiPath, InputMultiPath)
1111
from ..base import File, traits
12-
from ..utils.filemanip import split_filename, fname_presuffix, filename_to_list, list_to_filename
12+
from ...utils.filemanip import split_filename, fname_presuffix, filename_to_list, list_to_filename
1313

1414

1515
class Analyze2niiInputSpec(SPMCommandInputSpec):

0 commit comments

Comments
 (0)