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>2010-09-02 08:53:39 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-09-02 08:53:39 +0400
commit1e5e2412e23fd5cd3077d40a6b6bf78431516d12 (patch)
treead3a8ced6556a5ccfc16049237b2e962774d9903 /io_mesh_stl
parent893fa93c2d9385c1573d779a0304058d27ad1da8 (diff)
update for rna changes
Diffstat (limited to 'io_mesh_stl')
-rw-r--r--io_mesh_stl/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index 3c2669d9..96e8fc32 100644
--- a/io_mesh_stl/__init__.py
+++ b/io_mesh_stl/__init__.py
@@ -91,7 +91,7 @@ class StlImporter(bpy.types.Operator):
return {'FINISHED'}
def invoke(self, context, event):
- wm = context.manager
+ wm = context.window_manager
wm.add_fileselect(self)
return {'RUNNING_MODAL'}
@@ -133,7 +133,7 @@ class StlExporter(bpy.types.Operator):
return {'FINISHED'}
def invoke(self, context, event):
- wm = context.manager
+ wm = context.window_manager
wm.add_fileselect(self)
return {'RUNNING_MODAL'}