Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/python_api/examples/bpy.types.bpy_struct.keyframe_insert.py')
-rw-r--r--doc/python_api/examples/bpy.types.bpy_struct.keyframe_insert.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/python_api/examples/bpy.types.bpy_struct.keyframe_insert.py b/doc/python_api/examples/bpy.types.bpy_struct.keyframe_insert.py
index f1f4b98b32f..13fe848bdad 100644
--- a/doc/python_api/examples/bpy.types.bpy_struct.keyframe_insert.py
+++ b/doc/python_api/examples/bpy.types.bpy_struct.keyframe_insert.py
@@ -7,5 +7,5 @@ import bpy
obj = bpy.context.object
# set the keyframe at frame 1
-obj.location = 3.0, 4.0, 10.0
+obj.location = (3.0, 4.0, 10.0)
obj.keyframe_insert(data_path="location", frame=1)