File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -772,11 +772,11 @@ class Segment(SPMCommand):
772
772
def __init__ (self , ** inputs ):
773
773
_local_version = SPMCommand ().version
774
774
if _local_version and '12.' in _local_version :
775
- _jobtype = 'tools'
776
- _jobname = 'oldseg'
775
+ self . _jobtype = 'tools'
776
+ self . _jobname = 'oldseg'
777
777
else :
778
- _jobtype = 'spatial'
779
- _jobname = 'preproc'
778
+ self . _jobtype = 'spatial'
779
+ self . _jobname = 'preproc'
780
780
781
781
SPMCommand .__init__ (self , ** inputs )
782
782
@@ -901,11 +901,11 @@ class NewSegment(SPMCommand):
901
901
def __init__ (self , ** inputs ):
902
902
_local_version = SPMCommand ().version
903
903
if _local_version and '12.' in _local_version :
904
- _jobtype = 'spatial'
905
- _jobname = 'preproc'
904
+ self . _jobtype = 'spatial'
905
+ self . _jobname = 'preproc'
906
906
else :
907
- _jobtype = 'tools'
908
- _jobname = 'preproc8'
907
+ self . _jobtype = 'tools'
908
+ self . _jobname = 'preproc8'
909
909
910
910
SPMCommand .__init__ (self , ** inputs )
911
911
You can’t perform that action at this time.
0 commit comments