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>2012-11-14 16:17:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-11-14 16:17:05 +0400
commite86e443caf949b6060196fe066756af866617620 (patch)
treef2c855934a0bff630baa14a841269dd67b9f0393 /object_fracture_cell
parent81ef518e009705d1cfbf4843e06c74553fd26f92 (diff)
use alternate syntax to clear lists
Diffstat (limited to 'object_fracture_cell')
-rw-r--r--object_fracture_cell/fracture_cell_calc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/object_fracture_cell/fracture_cell_calc.py b/object_fracture_cell/fracture_cell_calc.py
index 03d27df8..9e6f0de5 100644
--- a/object_fracture_cell/fracture_cell_calc.py
+++ b/object_fracture_cell/fracture_cell_calc.py
@@ -115,6 +115,6 @@ def points_as_bmesh_cells(verts,
continue
cells.append((point_cell_current, vertices[:]))
- vertices[:] = []
+ del vertices[:]
return cells