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:
Diffstat (limited to 'io_mesh_ply/__init__.py')
-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"