[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [1295] contrib/py/scripts/addons/ mesh_normal_smooth.py: fix: made version a tuple - broke parser.

M.G. Kishalmi lmg at kishalmi.net
Tue Dec 21 10:28:37 CET 2010


Revision: 1295
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-extensions&revision=1295
Author:   lmg
Date:     2010-12-21 10:28:37 +0100 (Tue, 21 Dec 2010)

Log Message:
-----------
fix: made version a tuple - broke parser.

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

Modified: contrib/py/scripts/addons/mesh_normal_smooth.py
===================================================================
--- contrib/py/scripts/addons/mesh_normal_smooth.py	2010-12-19 17:12:13 UTC (rev 1294)
+++ contrib/py/scripts/addons/mesh_normal_smooth.py	2010-12-21 09:28:37 UTC (rev 1295)
@@ -24,7 +24,7 @@
 bl_addon_info = {
     "name": "Normal Smooth",
     "author": "Dolf Veenvliet",
-    "version": (7),
+    "version": (7,),
     "blender": (2, 5, 5),
     "api": 32738,
     "location": "View3D > Specials > Normal Smooth ",
@@ -191,4 +191,4 @@
     bpy.types.VIEW3D_MT_edit_mesh_vertices.remove(menu_func)
 
 if __name__ == "__main__":
-    register()
\ No newline at end of file
+    register()




More information about the Bf-extensions-cvs mailing list