[Bf-extensions-cvs] [328546a] master: Fix T50363: classes list included Cacharanth_Pref

lijenstina noreply at git.blender.org
Wed Jan 4 20:12:35 CET 2017


Commit: 328546a65cb8a5aca9fbc16b17737e3884ee6227
Author: lijenstina
Date:   Wed Jan 4 20:11:20 2017 +0100
Branches: master
https://developer.blender.org/rBAC328546a65cb8a5aca9fbc16b17737e3884ee6227

Fix T50363: classes list included Cacharanth_Pref

Like said Cacharanth_Pref wasn't defined anywhere.
Removed the entry from the list.

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

M	cacharanth/ui.py

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

diff --git a/cacharanth/ui.py b/cacharanth/ui.py
index aa097bc..fcbbf3d 100644
--- a/cacharanth/ui.py
+++ b/cacharanth/ui.py
@@ -51,7 +51,7 @@ class CACHARANTH_GroupSelect(Operator):
     @classmethod
     def poll(cls, context):
         return bpy.data.groups
-    
+
     def execute(self,context):
         bpy.context.scene.meshcache_group = bpy.data.groups[int(self.group_select)].name
         return {'FINISHED'}
@@ -67,7 +67,7 @@ def MeshcacheFolderSet(context, filepath):
 
 
 class MeshcacheFolderSetButton(Operator, ImportHelper):
-    bl_idname = "buttons.meshcache_folder_set"  
+    bl_idname = "buttons.meshcache_folder_set"
     bl_label = "Set Mesh Cache Folder"
     filename_ext = ".mdd"
 
@@ -210,8 +210,7 @@ classes = (
     MESH_OT_MeshcacheExcludeNameRemove,
     MeshcacheExcludeNames,
     MeshcacheFolderSetButton,
-    CACHARANTH_GroupSelect,
-    Cacharanth_Pref
+    CACHARANTH_GroupSelect
     )
 
 def register():



More information about the Bf-extensions-cvs mailing list