Skip to content

Commit a2672c8

Browse files
author
David Ellis
committed
FIX: Fixes import statement.
1 parent ede459f commit a2672c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/workflows/smri/freesurfer/autorecon3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ def create_AutoRecon3(name="AutoRecon3", qcache=False, plugin_args=None,
614614
# aseg.mgz gets edited in place, so we'll copy and pass it to the
615615
# outputspec once aparc_2_aseg has completed
616616
def out_aseg(in_aparcaseg, in_aseg, out_file):
617-
from .utils import copy_file
617+
import copy_file
618618
out_file = copy_file(in_aseg, out_file)
619619
return out_file
620620
apas_2_aseg = pe.Node(Function(['in_aparcaseg', 'in_aseg', 'out_file'],

0 commit comments

Comments
 (0)