From 01733ecd6e2bdcaabfc38022a24cf298c27a1cad Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 14 Oct 2010 09:09:41 +0000 Subject: [PATCH] [#24243] wavefront animation export fix from dan grauer (kromar) --- release/scripts/op/io_scene_obj/export_obj.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/scripts/op/io_scene_obj/export_obj.py b/release/scripts/op/io_scene_obj/export_obj.py index abdb07c1a8e..49bc098ee54 100644 --- a/release/scripts/op/io_scene_obj/export_obj.py +++ b/release/scripts/op/io_scene_obj/export_obj.py @@ -750,7 +750,7 @@ def _write(context, filepath, # Export an animation? if EXPORT_ANIMATION: - scene_frames = range(scene.frame_start, context.frame_end + 1) # Up to and including the end frame. + scene_frames = range(scene.frame_start, scene.frame_end + 1) # Up to and including the end frame. else: scene_frames = [orig_frame] # Dont export an animation.