[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [1205] contrib/py/scripts/addons/ mesh_fix_vert_groups.py: minor fixes to addon info

Brendon Murphy meta.androcto1 at gmail.com
Sat Nov 27 11:47:52 CET 2010


Revision: 1205
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-extensions&revision=1205
Author:   meta-androcto
Date:     2010-11-27 11:47:52 +0100 (Sat, 27 Nov 2010)

Log Message:
-----------
minor fixes to addon info

Modified Paths:
--------------
    contrib/py/scripts/addons/mesh_fix_vert_groups.py

Modified: contrib/py/scripts/addons/mesh_fix_vert_groups.py
===================================================================
--- contrib/py/scripts/addons/mesh_fix_vert_groups.py	2010-11-26 15:06:07 UTC (rev 1204)
+++ contrib/py/scripts/addons/mesh_fix_vert_groups.py	2010-11-27 10:47:52 UTC (rev 1205)
@@ -33,8 +33,6 @@
 Once you have the right vertexes selected, you can use the standard vertex groups property editor to add them to or remove them from the desired vertex groups.
 """
 
-import bpy
-from bpy.props import *
 bl_addon_info = {
     'name': 'Fix Vertex Groups',
     'author': 'Martin Ellison',
@@ -42,13 +40,16 @@
     'blender': (2, 5, 4),
     'api': 32516,
     'location': 'Toolbox',
-    'description': 'Import files in the Autocad DXF format (.dxf)',
+    'description': 'finds all the vertex groups that chosen verts are in, & any verts that are not in any group',
     'warning': '', # used for warning icon and text in addons panel
     'wiki_url': '',
     'tracker_url': 'https://projects.blender.org/tracker/index.php?'\
         'func=detail&aid=22025&group_id=153&atid=468',
     'category': 'Mesh'}
 
+import bpy
+from bpy.props import *
+
 global use_selected_only, used_vertexes, the_mesh, vertex_usage
 use_selected_only = False
 used_vertexes = set()




More information about the Bf-extensions-cvs mailing list