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:
authorCampbell Barton <ideasman42@gmail.com>2012-04-08 12:09:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-08 12:09:37 +0400
commit4fc6ef1cf57a48626cbfa7fd9cc09de9bec29f92 (patch)
tree6e1c9f9381d5a6a8027e265ddb56ab909cc1b99c /release/scripts/modules/bpy_extras/mesh_utils.py
parentc1e475e527c49ed1a355472f560ae43a27af8f15 (diff)
style cleanup: pep8 some C/style
Diffstat (limited to 'release/scripts/modules/bpy_extras/mesh_utils.py')
-rw-r--r--release/scripts/modules/bpy_extras/mesh_utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/modules/bpy_extras/mesh_utils.py b/release/scripts/modules/bpy_extras/mesh_utils.py
index c3ecfcd5dca..3ce45154765 100644
--- a/release/scripts/modules/bpy_extras/mesh_utils.py
+++ b/release/scripts/modules/bpy_extras/mesh_utils.py
@@ -48,7 +48,8 @@ def mesh_linked_tessfaces(mesh):
# sort faces into connectivity groups
face_groups = [[f] for f in mesh.tessfaces]
- face_mapping = list(range(len(mesh.tessfaces))) # map old, new face location
+ # map old, new face location
+ face_mapping = list(range(len(mesh.tessfaces)))
# Now clump faces iteratively
ok = True