Explorar el Código

Fix typo that produced invalid markup for images

Guido Berhoerster hace 10 años
padre
commit
acbaefcc02
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      tools/export/blender25/io_scene_dae/export_dae.py

+ 1 - 1
tools/export/blender25/io_scene_dae/export_dae.py

@@ -228,7 +228,7 @@ class DaeExporter:
 #				imgpath="images/"+image.name+".png"
 
 		self.writel(S_IMGS,1,'<image id="'+imgid+'" name="'+image.name+'">')
-		self.writel(S_IMGS,2,'<init_from>'+imgpath+'</init_from>"/>')
+		self.writel(S_IMGS,2,'<init_from>'+imgpath+'</init_from>')
 		self.writel(S_IMGS,1,'</image>')
 		self.image_cache[image]=imgid
 		return imgid