[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [2694] contrib/py/scripts/addons/ development_class_viewer.py: Fixed identation error on line 41.

Alfonso de Leon Serra mackraken2023 at hotmail.com
Thu Dec 1 16:28:58 CET 2011


Revision: 2694
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=2694
Author:   mackraken
Date:     2011-12-01 15:28:57 +0000 (Thu, 01 Dec 2011)
Log Message:
-----------
Fixed identation error on line 41.

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

Modified: contrib/py/scripts/addons/development_class_viewer.py
===================================================================
--- contrib/py/scripts/addons/development_class_viewer.py	2011-12-01 15:25:02 UTC (rev 2693)
+++ contrib/py/scripts/addons/development_class_viewer.py	2011-12-01 15:28:57 UTC (rev 2694)
@@ -37,7 +37,7 @@
 #escape = character right next to the class or def name 
 
 def getfunc(space, sort, tipo="def ", escape= ""):
-        defs = []
+	defs = []
 	if space.type=="TEXT_EDITOR":
 		if space.text!=None:
 			txt = space.text
@@ -187,7 +187,7 @@
 	for c in classes:
 		bpy.utils.unregister_class(c)
 		
-        bpy.types.TEXT_MT_toolbox.remove(GotoComments)
+		bpy.types.TEXT_MT_toolbox.remove(GotoComments)
 	bpy.types.TEXT_MT_toolbox.remove(GotoDefs)
 	bpy.types.TEXT_MT_toolbox.remove(GotoClasses)
 	



More information about the Bf-extensions-cvs mailing list