[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [4268] contrib/py/scripts/addons/ mesh_edgetools.py: remove blender version check, 2.63 is quite old now.

Campbell Barton ideasman42 at gmail.com
Wed Feb 13 14:49:34 CET 2013


Revision: 4268
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=4268
Author:   campbellbarton
Date:     2013-02-13 13:49:34 +0000 (Wed, 13 Feb 2013)
Log Message:
-----------
remove blender version check, 2.63 is quite old now.

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

Modified: contrib/py/scripts/addons/mesh_edgetools.py
===================================================================
--- contrib/py/scripts/addons/mesh_edgetools.py	2013-02-13 13:45:40 UTC (rev 4267)
+++ contrib/py/scripts/addons/mesh_edgetools.py	2013-02-13 13:49:34 UTC (rev 4268)
@@ -1943,12 +1943,7 @@
 # registering and menu integration
 def register():
     global integrated
-    if int(bpy.app.build_revision[0:5]) < 44800:
-        print("Error in Edgetools:")
-        print("This version of Blender does not support the necessary BMesh API.")
-        print("Please download Blender 2.63 or newer.")
-        return {'ERROR'}
-        
+
     for c in classes:
         bpy.utils.register_class(c)
 



More information about the Bf-extensions-cvs mailing list