From b4e304d9ab9c0955091a1b4224a5b1cd2edcca9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Tronel?= Date: Sat, 2 Dec 2023 20:56:49 +0100 Subject: [PATCH] Fix a typo. --- removeads.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/removeads.py b/removeads.py index 00192a2..180c0b3 100755 --- a/removeads.py +++ b/removeads.py @@ -262,7 +262,7 @@ def getFramesInStream(inputFile, begin, end, streamKind, subStreamId=0): else: logger.error('Impossible to find timestamp of frame %s' % frame) return None - ts = timedelta(seconds=pts_time)) + ts = timedelta(seconds=pts_time) if begin <= ts and ts <= end: res.append(frame) return res