From 6cbbe90e7ec4a2cd18214d37916a87e167e67ba7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 16 Mar 2011 12:04:48 +0000 Subject: fix for error in recent updates. --- io_scene_fbx/export_fbx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'io_scene_fbx') diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py index 10bfe536..f9578de6 100644 --- a/io_scene_fbx/export_fbx.py +++ b/io_scene_fbx/export_fbx.py @@ -2836,7 +2836,7 @@ def save(operator, context, if use_selection: kwargs_mod["context_objects"] = context.selected_objects else: - kwargs_mod["context_objects"] = scene.objects + kwargs_mod["context_objects"] = context.scene.objects return save_single(operator, context.scene, filepath, **kwargs_mod) else: -- cgit v1.2.3