Browse Source

Merge pull request #2132 from gber/master

Fix typo that produced invalid markup for images
Juan Linietsky 10 years ago
parent
commit
8f9f03e374
1 changed files with 1 additions and 1 deletions
  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"
 #				imgpath="images/"+image.name+".png"
 
 
 		self.writel(S_IMGS,1,'<image id="'+imgid+'" name="'+image.name+'">')
 		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.writel(S_IMGS,1,'</image>')
 		self.image_cache[image]=imgid
 		self.image_cache[image]=imgid
 		return imgid
 		return imgid