Skip to content

Commit 1bc3c9f

Browse files
Removed unecessary logging in keyframe navigation
Co-Authored-By: Frank Dana <[email protected]>
1 parent 624b93d commit 1bc3c9f

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/windows/main_window.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -1240,11 +1240,7 @@ def getKeyframePositions(data, clip_start_time, clip_stop_time, fps_float):
12401240
keyframe_time=(point["co"]["X"]-1)/fps_float - data["start"] + data["position"]
12411241
if keyframe_time > clip_start_time and keyframe_time < clip_stop_time :
12421242
positions.append(keyframe_time)
1243-
except TypeError:
1244-
log.info("%s : %s : not itterable", property, data[property])
1245-
pass
1246-
except KeyError:
1247-
log.info("%s : %s : has no points", property, data[property])
1243+
except (TypeError, KeyError):
12481244
pass
12491245
return positions
12501246

0 commit comments

Comments
 (0)