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>2015-01-14 16:01:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-01-14 16:01:04 +0300
commit7a56d60eebbbb18ac8912a9869c342a5cbba7b18 (patch)
treef86935cc9af6b69a560e6560e0eb4fc165806c9c /io_mesh_ply
parentbfbabc0592b820ec948fa355805ed78a882f4943 (diff)
rename IOHelperOrientation -> OrientationHelper
Diffstat (limited to 'io_mesh_ply')
-rw-r--r--io_mesh_ply/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_mesh_ply/__init__.py b/io_mesh_ply/__init__.py
index 887c354e..d85fb46b 100644
--- a/io_mesh_ply/__init__.py
+++ b/io_mesh_ply/__init__.py
@@ -53,7 +53,7 @@ from bpy.props import (CollectionProperty,
)
from bpy_extras.io_utils import (ImportHelper,
ExportHelper,
- IOHelperOrientation,
+ OrientationHelper,
axis_conversion,
)
@@ -88,7 +88,7 @@ class ImportPLY(bpy.types.Operator, ImportHelper):
return {'FINISHED'}
-class ExportPLY(bpy.types.Operator, ExportHelper, IOHelperOrientation):
+class ExportPLY(bpy.types.Operator, ExportHelper, OrientationHelper):
"""Export a single object as a Stanford PLY with normals, """ \
"""colors and texture coordinates"""
bl_idname = "export_mesh.ply"