[Bf-extensions-cvs] [8e8163b] master: fix for indent error

Brendon Murphy noreply at git.blender.org
Tue Jul 8 15:51:07 CEST 2014


Commit: 8e8163bc43b06a34147750b33ce5a718b10c1de2
Author: Brendon Murphy
Date:   Tue Jul 8 23:48:48 2014 +1000
https://developer.blender.org/rBAC8e8163bc43b06a34147750b33ce5a718b10c1de2

fix for indent error

===================================================================

M	object_drop_to_ground.py

===================================================================

diff --git a/object_drop_to_ground.py b/object_drop_to_ground.py
index 30aa857..1a8d521 100644
--- a/object_drop_to_ground.py
+++ b/object_drop_to_ground.py
@@ -20,8 +20,8 @@ bl_info = {
     'name': 'Drop to Ground',
     'author': 'Unnikrishnan(kodemax), Florian Meyer(testscreenings)',
     'version': (1, 2),
-    "blender": (2, 63, 0),
-    'location': '3D View > Tool Shelf > Object Tools Panel (at the bottom)',
+    "blender": (2, 71, 0),
+    'location': '3D View > Toolshelf > Addons Tab',
     'description': 'Drop selected objects on active object',
     'warning': '',
     'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.6/Py/'
@@ -179,7 +179,7 @@ class drop_help(bpy.types.Operator):
 		layout.label("Select the object/s to drop")
 		layout.label("Then Shift Select 'Ground'")
 
-    def execute(self, context):
+	def execute(self, context):
 		return {'FINISHED'}
 
 	def invoke(self, context, event):



More information about the Bf-extensions-cvs mailing list