[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [3839] contrib/py/scripts/addons/ mesh_extra_tools/mesh_mextrude_plus.py: fix for error in line 164

Brendon Murphy meta.androcto1 at gmail.com
Tue Oct 9 10:45:03 CEST 2012


Revision: 3839
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=3839
Author:   meta-androcto
Date:     2012-10-09 08:45:03 +0000 (Tue, 09 Oct 2012)
Log Message:
-----------
fix for error in line 164

Modified Paths:
--------------
    contrib/py/scripts/addons/mesh_extra_tools/mesh_mextrude_plus.py

Modified: contrib/py/scripts/addons/mesh_extra_tools/mesh_mextrude_plus.py
===================================================================
--- contrib/py/scripts/addons/mesh_extra_tools/mesh_mextrude_plus.py	2012-10-09 03:30:38 UTC (rev 3838)
+++ contrib/py/scripts/addons/mesh_extra_tools/mesh_mextrude_plus.py	2012-10-09 08:45:03 UTC (rev 3839)
@@ -161,7 +161,7 @@
                 r2q = rot.to_quaternion()
                 bpy.ops.mesh.extrude_faces_move()
                 bpy.ops.transform.translate(value = norm * loc)
-                bpy.ops.transform.rotate(value = [r2q.angle], axis = r2q.axis)
+                bpy.ops.transform.rotate(value = r2q.angle, axis = r2q.axis)
                 bpy.ops.transform.resize(value = vsca(self, i + a))
             bpy.ops.object.vertex_group_remove_from()
             bpy.ops.mesh.hide()



More information about the Bf-extensions-cvs mailing list