@@ -200,7 +200,7 @@ def remove_keyframe(self, item):
200
200
clip_data = c .data .get ('objects' ).get (object_id )
201
201
202
202
if property_key in clip_data : # Update clip attribute
203
- log_id = f" { clip_id } /{ object_id } " if object_id else clip_id
203
+ log_id = "{ }/{}" . format ( clip_id , object_id ) if object_id else clip_id
204
204
log .debug ("%s: remove %s keyframe. %s" , log_id , property_key , clip_data .get (property_key ))
205
205
206
206
# Determine type of keyframe (normal or color)
@@ -289,7 +289,7 @@ def color_update(self, item, new_color, interpolation=-1, interpolation_details=
289
289
290
290
# Update clip attribute
291
291
if property_key in clip_data :
292
- log_id = f" { clip_id } /{ object_id } " if object_id else clip_id
292
+ log_id = "{ }/{}" . format ( clip_id , object_id ) if object_id else clip_id
293
293
log .debug ("%s: update color property %s. %s" , log_id , property_key , clip_data .get (property_key ))
294
294
295
295
# Loop through each keyframe (red, blue, and green)
@@ -441,7 +441,7 @@ def value_updated(self, item, interpolation=-1, value=None, interpolation_detail
441
441
442
442
# Update clip attribute
443
443
if property_key in clip_data :
444
- log_id = f" { clip_id } /{ object_id } " if object_id else clip_id
444
+ log_id = "{ }/{}" . format ( clip_id , object_id ) if object_id else clip_id
445
445
log .debug ("%s: update property %s. %s" , log_id , property_key , clip_data .get (property_key ))
446
446
447
447
# Check the type of property (some are keyframe, and some are not)
0 commit comments