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:
authorCampbell Barton <ideasman42@gmail.com>2013-03-01 18:47:06 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-01 18:47:06 +0400
commit0ac07404baf41aef65367395b86957ab1efa655f (patch)
tree993f127de5aeee9ef7415e7e2d84d0cf837f0bdf /source/blender/python/intern/bpy_rna_anim.c
parent462e4bee87f085ae775eaa953a832bfcf6503ca3 (diff)
style cleanup: braces with multi-line statements, also add some comments.
Diffstat (limited to 'source/blender/python/intern/bpy_rna_anim.c')
-rw-r--r--source/blender/python/intern/bpy_rna_anim.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_rna_anim.c b/source/blender/python/intern/bpy_rna_anim.c
index a19f8e2d8ed..b61ed55da06 100644
--- a/source/blender/python/intern/bpy_rna_anim.c
+++ b/source/blender/python/intern/bpy_rna_anim.c
@@ -156,7 +156,8 @@ static int pyrna_struct_keyframe_parse(
/* note, parse_str MUST start with 's|ifsO!' */
if (!PyArg_ParseTupleAndKeywords(args, kw, parse_str, (char **)kwlist, &path, index, cfra, group_name,
- &PySet_Type, &pyoptions)) {
+ &PySet_Type, &pyoptions))
+ {
return -1;
}