summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2015-06-22 23:45:21 -0300
committerJuan Linietsky <reduzio@gmail.com>2015-06-22 23:45:21 -0300
commit8f9f03e37495d4c5ca44ef7d72e972e3e33ade5a (patch)
tree89a91961c0c5179e817f560e03c071aacae66ef3
parent0805e83e59a5dd245176f3ced93cf5f637496bc8 (diff)
parentacbaefcc0274e17fc25736f0d7c6cd7feb176129 (diff)
Merge pull request #2132 from gber/master
Fix typo that produced invalid markup for images
-rw-r--r--tools/export/blender25/io_scene_dae/export_dae.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/export/blender25/io_scene_dae/export_dae.py b/tools/export/blender25/io_scene_dae/export_dae.py
index 9568ccb645..5245f32b82 100644
--- a/tools/export/blender25/io_scene_dae/export_dae.py
+++ b/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