[Bf-blender-cvs] [bd1f9464132] master: Recent action-bake used Py3.6 syntax

Campbell Barton noreply at git.blender.org
Thu Sep 14 08:55:35 CEST 2017


Commit: bd1f946413293665622ae01ada65f83a22273137
Author: Campbell Barton
Date:   Thu Sep 14 17:03:40 2017 +1000
Branches: master
https://developer.blender.org/rBbd1f946413293665622ae01ada65f83a22273137

Recent action-bake used Py3.6 syntax

===================================================================

M	release/scripts/modules/bpy_extras/anim_utils.py

===================================================================

diff --git a/release/scripts/modules/bpy_extras/anim_utils.py b/release/scripts/modules/bpy_extras/anim_utils.py
index f2df1bc16b3..ea0bd77c0f0 100644
--- a/release/scripts/modules/bpy_extras/anim_utils.py
+++ b/release/scripts/modules/bpy_extras/anim_utils.py
@@ -33,7 +33,7 @@ def bake_action(
         obj,
         *,
         action, frames,
-        **kwargs,
+        **kwargs
 ):
     """
     :arg obj: Object to bake.
@@ -62,7 +62,7 @@ def bake_action_objects(
         object_action_pairs,
         *,
         frames,
-        **kwargs,
+        **kwargs
 ):
     """
     A version of :func:`bake_action_objects_iter` that takes frames and returns the output.
@@ -82,7 +82,7 @@ def bake_action_objects(
 
 def bake_action_objects_iter(
         object_action_pairs,
-        **kwargs,
+        **kwargs
 ):
     """
     An coroutine that bakes actions for multiple objects.
@@ -122,7 +122,7 @@ def bake_action_iter(
         do_visual_keying=True,
         do_constraint_clear=False,
         do_parents_clear=False,
-        do_clean=False,
+        do_clean=False
 ):
     """
     An coroutine that bakes action for a single object.



More information about the Bf-blender-cvs mailing list