From 8e8163bc43b06a34147750b33ce5a718b10c1de2 Mon Sep 17 00:00:00 2001
From: Brendon Murphy <meta.androcto1@gmail.com>
Date: Tue, 8 Jul 2014 23:48:48 +1000
Subject: [PATCH] fix for indent error

---
 object_drop_to_ground.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/object_drop_to_ground.py b/object_drop_to_ground.py
index 30aa857f..1a8d5214 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):
-- 
GitLab