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>2018-10-09 00:36:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-10-09 00:36:03 +0300
commitae2c9b04e5d68dc6244b06d1e27bf6c3148f5d28 (patch)
treed7ad7e9f86da848100dd38de62f31c851b8f91d3 /io_mesh_uv_layout
parent31017e2dc32c77612a44cc1f266e37928d7ed866 (diff)
Cleanup: quotes
Diffstat (limited to 'io_mesh_uv_layout')
-rw-r--r--io_mesh_uv_layout/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/io_mesh_uv_layout/__init__.py b/io_mesh_uv_layout/__init__.py
index 1ebbb062..2c525140 100644
--- a/io_mesh_uv_layout/__init__.py
+++ b/io_mesh_uv_layout/__init__.py
@@ -165,7 +165,7 @@ class ExportUVLayout(bpy.types.Operator):
@staticmethod
def iter_objects_to_export(context):
for obj in context.selected_objects:
- if obj.type != "MESH":
+ if obj.type != 'MESH':
continue
mesh = obj.data
if mesh.uv_layers.active is None:
@@ -220,11 +220,11 @@ class ExportUVLayout(bpy.types.Operator):
return default
def get_exporter(self):
- if self.mode == "PNG":
+ if self.mode == 'PNG':
return export_uv_png.export
- elif self.mode == "EPS":
+ elif self.mode == 'EPS':
return export_uv_eps.export
- elif self.mode == "SVG":
+ elif self.mode == 'SVG':
return export_uv_svg.export
else:
assert False