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-01-01 15:10:01 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-01 15:10:01 +0300
commitc6519481e52b9b2b9f049a63487185cbba2ba965 (patch)
tree00ffd2db3d28f4e17cd7be423c129eb8e1c9d654 /io_import_scene_lwo.py
parent01b2f67943cd8580576917466531ab2c45519ad0 (diff)
clear some pep8 complaints
Diffstat (limited to 'io_import_scene_lwo.py')
-rw-r--r--io_import_scene_lwo.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/io_import_scene_lwo.py b/io_import_scene_lwo.py
index 2e22ada7..d2c5e2b7 100644
--- a/io_import_scene_lwo.py
+++ b/io_import_scene_lwo.py
@@ -1242,9 +1242,11 @@ class IMPORT_OT_lwo(bpy.types.Operator):
def menu_func(self, context):
self.layout.operator(IMPORT_OT_lwo.bl_idname, text="LightWave Object (.lwo)")
+
def register():
bpy.types.INFO_MT_file_import.append(menu_func)
+
def unregister():
bpy.types.INFO_MT_file_import.remove(menu_func)