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-21 04:14:08 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-01-21 04:14:08 +0300
commitc3e89343528a926c9349e20af31873b1a9d3e95c (patch)
treead3df913bba589a95695f02d2e31ff1138acaa25 /mesh_looptools.py
parent14d17824a584824dfc357d25c24944cf505209ab (diff)
Please avoid littering scripts with API versions
Diffstat (limited to 'mesh_looptools.py')
-rw-r--r--mesh_looptools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesh_looptools.py b/mesh_looptools.py
index 06a1cc4d..49a26c48 100644
--- a/mesh_looptools.py
+++ b/mesh_looptools.py
@@ -2815,7 +2815,7 @@ def gstretch_match_loops_strokes(loops, strokes, object, bm_mod):
# calculate loop centers
loop_centers = []
- bm_mod.verts.ensure_lookup_table() # to work in 2.73
+ bm_mod.verts.ensure_lookup_table()
for loop in loops:
center = mathutils.Vector()
for v_index in loop[0]: