From 8ea7d44e62d004978f7c592da700f11afd01cfef Mon Sep 17 00:00:00 2001 From: Christoph Lendenfeld Date: Thu, 11 Apr 2024 11:15:28 +0200 Subject: [PATCH] Fix #120470: Keying Set export fails in python Caused by 30b0c5b225 That commit removed `use_insertkey_xyz_to_rgb` but I didn't see the use of that in the python script. Fixed by removing the usage of that property from the python script as well. Pull Request: https://projects.blender.org/blender/blender/pulls/120509 --- scripts/startup/bl_operators/anim.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/startup/bl_operators/anim.py b/scripts/startup/bl_operators/anim.py index 054fdcc2e2a..b8cabd592ce 100644 --- a/scripts/startup/bl_operators/anim.py +++ b/scripts/startup/bl_operators/anim.py @@ -71,7 +71,6 @@ class ANIM_OT_keying_set_export(Operator): f.write("ks.use_insertkey_needed = %s\n" % ks.use_insertkey_needed) f.write("ks.use_insertkey_visual = %s\n" % ks.use_insertkey_visual) - f.write("ks.use_insertkey_xyz_to_rgb = %s\n" % ks.use_insertkey_xyz_to_rgb) f.write("\n") # --------------------------------------------------------