Skip to content

Commit 5a3402c

Browse files
committed
Simplify log message for videos with too short captions
1 parent 1a431b5 commit 5a3402c

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tools/remove_wrong_videos.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@
3030
for video in videos:
3131
if video.broken == 0:
3232
if is_captions_too_short(video.get_content(), video.duration):
33-
print(
34-
f"Video {video} has too short captions: {video_language}, setting to broken"
35-
)
33+
print(f"Video {video} has too short captions setting to broken")
3634
video.broken = 4
3735

3836
print("done")

0 commit comments

Comments
 (0)