Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-03-15 02:52:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-15 02:52:13 +0300
commitbbeb2132fc8a10a7b697ce30c72f4bbab5da25e0 (patch)
tree40469caafde843a087ff1d87a6e214288538265d /io_mesh_uv_layout/export_uv_svg.py
parent374c7c2a7ba029236c9cceb63218453579ba70d8 (diff)
pep8 cleanup
Diffstat (limited to 'io_mesh_uv_layout/export_uv_svg.py')
-rw-r--r--io_mesh_uv_layout/export_uv_svg.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/io_mesh_uv_layout/export_uv_svg.py b/io_mesh_uv_layout/export_uv_svg.py
index 260c49e5..464211cb 100644
--- a/io_mesh_uv_layout/export_uv_svg.py
+++ b/io_mesh_uv_layout/export_uv_svg.py
@@ -20,6 +20,7 @@
import bpy
+
def write(fw, mesh, image_width, image_height, opacity, face_iter_func):
# for making an XML compatible string
from xml.sax.saxutils import escape
@@ -60,4 +61,4 @@ def write(fw, mesh, image_width, image_height, opacity, face_iter_func):
fw('%.3f,%.3f ' % (x * image_width, y * image_height))
fw('" />\n')
fw('\n')
- fw('</svg>\n') \ No newline at end of file
+ fw('</svg>\n')