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:
Diffstat (limited to 'io_anim_camera.py')
-rw-r--r--io_anim_camera.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_anim_camera.py b/io_anim_camera.py
index 03783330..5e4e848a 100644
--- a/io_anim_camera.py
+++ b/io_anim_camera.py
@@ -103,7 +103,7 @@ def writeCameras(context, path, frame_start, frame_end, only_selected=False):
for marker in scene.timeline_markers:
fw("marker = scene.timeline_markers.add('%s')\n" % marker.name)
fw("marker.frame = %d + frame\n" % marker.frame)
-
+
# will fail if the cameras not selected
if marker.camera:
fw("marker.camera = cameras.get('%s')\n" % marker.camera.name)