@@ -38,10 +38,10 @@ class MeshFixInputSpec(CommandLineInputSpec):
3838 dont_clean = traits .Bool (argstr = '--no-clean' , desc = "Don't Clean" )
3939
4040 save_as_stl = traits .Bool (
41- xor = ['save_as_vmrl ' , 'save_as_freesurfer_mesh' ],
41+ xor = ['save_as_vrml ' , 'save_as_freesurfer_mesh' ],
4242 argstr = '--stl' ,
4343 desc = "Result is saved in stereolithographic format (.stl)" )
44- save_as_vmrl = traits .Bool (
44+ save_as_vrml = traits .Bool (
4545 argstr = '--wrl' ,
4646 xor = ['save_as_stl' , 'save_as_freesurfer_mesh' ],
4747 desc = "Result is saved in VRML1.0 format (.wrl)" )
@@ -210,7 +210,7 @@ def _gen_outfilename(self):
210210 if self .inputs .save_as_stl or self .inputs .output_type == 'stl' :
211211 self .inputs .output_type = 'stl'
212212 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
216216 return name + '_fixed.' + self .inputs .output_type
0 commit comments