Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-02-11 06:36:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-11 06:36:32 +0300
commit6420f4bf6ef0f700e8bc07be4cb52424e49f9197 (patch)
treed3735be59bc4cd2eae815db0bea40d32bd701c93 /space_view3d_copy_attributes.py
parent4d2e0334877bd8ad9859d8755b6b47adc388e19c (diff)
fix for addons, all addons now load without errors, next test unload.
Diffstat (limited to 'space_view3d_copy_attributes.py')
-rw-r--r--space_view3d_copy_attributes.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/space_view3d_copy_attributes.py b/space_view3d_copy_attributes.py
index ce30d55a..4c1babb1 100644
--- a/space_view3d_copy_attributes.py
+++ b/space_view3d_copy_attributes.py
@@ -32,11 +32,6 @@ bl_info = {
'func=detail&aid=22588',
'category': '3D View'}
-__bpydoc__ = """
-Copy Menu
-
-
-"""
import bpy
import mathutils
from mathutils import *
@@ -749,7 +744,7 @@ def register():
kmi = km.items.new('wm.call_menu', 'C', 'PRESS', ctrl=True)
kmi.properties.name = 'VIEW3D_MT_posecopypopup'
for menu in _layer_menus:
- bpy.types.register(menu)
+ bpy.utils.register_class(menu)
bpy.types.DATA_PT_texface.append(_add_tface_buttons)
km = kc.keymaps.get("Mesh")
if km is None: