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:
authorM Bouchard Guillaume <guillaume.bouchard@liris.cnrs.fr>2010-09-20 12:45:09 +0400
committerM Bouchard Guillaume <guillaume.bouchard@liris.cnrs.fr>2010-09-20 12:45:09 +0400
commite73b41d7f6611f2783273fee4270e16e8520ec26 (patch)
tree528f656389ef69cc87419c7f6a6992ec16cf53b3 /io_mesh_stl/stl_utils.py
parentbcda26d9c486eed9e15104c97b4adbcbaa3e0500 (diff)
revert *style* changes that break the script
Diffstat (limited to 'io_mesh_stl/stl_utils.py')
-rw-r--r--io_mesh_stl/stl_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_mesh_stl/stl_utils.py b/io_mesh_stl/stl_utils.py
index ff647b67..912df356 100644
--- a/io_mesh_stl/stl_utils.py
+++ b/io_mesh_stl/stl_utils.py
@@ -209,7 +209,7 @@ def read_stl(filename):
# If the point is allready in the list of points, the
# index returned by pts.add() will be the one from the
# first equal point inserted.
- tris.append(pts.add(p) for p in pt)
+ tris.append([pts.add(p) for p in pt])
return tris, pts.list