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_stl/__init__.py')
-rw-r--r--io_mesh_stl/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index 884fc11d..c3d628d5 100644
--- a/io_mesh_stl/__init__.py
+++ b/io_mesh_stl/__init__.py
@@ -65,13 +65,13 @@ from bpy.props import (StringProperty,
)
from bpy_extras.io_utils import (ImportHelper,
ExportHelper,
- IOHelperOrientation,
+ OrientationHelper,
axis_conversion,
)
from bpy.types import Operator, OperatorFileListElement
-class ImportSTL(Operator, ImportHelper, IOHelperOrientation):
+class ImportSTL(Operator, ImportHelper, OrientationHelper):
"""Load STL triangle mesh data"""
bl_idname = "import_mesh.stl"
bl_label = "Import STL"
@@ -139,7 +139,7 @@ class ImportSTL(Operator, ImportHelper, IOHelperOrientation):
return {'FINISHED'}
-class ExportSTL(Operator, ExportHelper, IOHelperOrientation):
+class ExportSTL(Operator, ExportHelper, OrientationHelper):
"""Save STL triangle mesh data from the active object"""
bl_idname = "export_mesh.stl"
bl_label = "Export STL"