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-03-16 15:04:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-16 15:04:48 +0300
commit6cbbe90e7ec4a2cd18214d37916a87e167e67ba7 (patch)
tree47bdbcbf01d1e966cfc55f57259f92b9de712eea /io_scene_fbx
parent37e1882f2333abdece571030c28ff067c7b91d3f (diff)
fix for error in recent updates.
Diffstat (limited to 'io_scene_fbx')
-rw-r--r--io_scene_fbx/export_fbx.py2
1 files changed, 1 insertions, 1 deletions
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: