@@ -38,10 +38,10 @@ class MeshFixInputSpec(CommandLineInputSpec):
38
38
dont_clean = traits .Bool (argstr = '--no-clean' , desc = "Don't Clean" )
39
39
40
40
save_as_stl = traits .Bool (
41
- xor = ['save_as_vmrl ' , 'save_as_freesurfer_mesh' ],
41
+ xor = ['save_as_vrml ' , 'save_as_freesurfer_mesh' ],
42
42
argstr = '--stl' ,
43
43
desc = "Result is saved in stereolithographic format (.stl)" )
44
- save_as_vmrl = traits .Bool (
44
+ save_as_vrml = traits .Bool (
45
45
argstr = '--wrl' ,
46
46
xor = ['save_as_stl' , 'save_as_freesurfer_mesh' ],
47
47
desc = "Result is saved in VRML1.0 format (.wrl)" )
@@ -210,7 +210,7 @@ def _gen_outfilename(self):
210
210
if self .inputs .save_as_stl or self .inputs .output_type == 'stl' :
211
211
self .inputs .output_type = 'stl'
212
212
self .inputs .save_as_stl = True
213
- if self .inputs .save_as_vmrl or self .inputs .output_type == 'vmrl ' :
214
- self .inputs .output_type = 'vmrl '
215
- self .inputs .save_as_vmrl = True
213
+ if self .inputs .save_as_vrml or self .inputs .output_type == 'vrml ' :
214
+ self .inputs .output_type = 'vrml '
215
+ self .inputs .save_as_vrml = True
216
216
return name + '_fixed.' + self .inputs .output_type
0 commit comments