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:
authorAaron Keith <aaroninusa@gmail.com>2011-12-01 00:55:51 +0400
committerAaron Keith <aaroninusa@gmail.com>2011-12-01 00:55:51 +0400
commit0d8f63f8290895d9c20b434785da1a0a1b58c779 (patch)
tree0ee28db0928176daa9f8f2c6dd3ed63b347ce647 /add_mesh_BoltFactory
parentd1860f8871449064a5d3862d463ec4566be7d06b (diff)
Fixed Bug in Bolt Factory “remove doubles” function, which was introduced during indentation clean up.
Diffstat (limited to 'add_mesh_BoltFactory')
-rw-r--r--add_mesh_BoltFactory/createMesh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/add_mesh_BoltFactory/createMesh.py b/add_mesh_BoltFactory/createMesh.py
index 6dae7b4c..9b30d6ab 100644
--- a/add_mesh_BoltFactory/createMesh.py
+++ b/add_mesh_BoltFactory/createMesh.py
@@ -94,7 +94,7 @@ def RemoveDoubles(verts,faces,Decimal_Places = 4):
if len(new_face) == 3 or len(new_face) == 4:
new_faces.append(new_face)
- return new_verts,new_faces
+ return new_verts,new_faces