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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/op/mesh.py')
-rw-r--r--release/scripts/op/mesh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/op/mesh.py b/release/scripts/op/mesh.py
index 3989e51b6ca..78ca9a18cdc 100644
--- a/release/scripts/op/mesh.py
+++ b/release/scripts/op/mesh.py
@@ -76,7 +76,7 @@ class MeshMirrorUV(bpy.types.Operator):
def execute(self, context):
DIR = 1 # TODO, make an option
- from Mathutils import Vector
+ from mathutils import Vector
ob = context.active_object
is_editmode = (ob.mode == 'EDIT')