From 1e5e2412e23fd5cd3077d40a6b6bf78431516d12 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 2 Sep 2010 04:53:39 +0000 Subject: update for rna changes --- io_mesh_stl/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'io_mesh_stl') 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'} -- cgit v1.2.3