Skip to content
Snippets Groups Projects
Commit a50b0362 authored by Campbell Barton's avatar Campbell Barton
Browse files

fix for error in script

parent 4b5cee6a
No related branches found
No related tags found
No related merge requests found
...@@ -166,7 +166,7 @@ def found_verts(vertex_group): ...@@ -166,7 +166,7 @@ def found_verts(vertex_group):
if vertex_group == 'no group': if vertex_group == 'no group':
for v in obj.data.vertices: for v in obj.data.vertices:
if v.index in used_vertexes and len(v.groups) == 0: if v.index in used_vertexes and len(v.groups) == 0:
gfound.append(v) vgfound.append(v)
else: else:
vgnum = -1 vgnum = -1
for vg in obj.vertex_groups: for vg in obj.vertex_groups:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment