aboutsummaryrefslogtreecommitdiff
path: root/yt_dlp/webvtt.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2024-03-10 20:48:44 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2024-03-11 00:52:28 +0530
commit615a84447e8322720be77a0e64298d7f42848693 (patch)
tree46c0a3472856badee38ff6ed27d8b2742b348afe /yt_dlp/webvtt.py
parented3bb2b0a12c44334e0d09481752dabf2ca1dc13 (diff)
[cleanup] Misc (#8968)
Authored by: pukkandan, bashonly, seproDev
Diffstat (limited to 'yt_dlp/webvtt.py')
-rw-r--r--yt_dlp/webvtt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/webvtt.py b/yt_dlp/webvtt.py
index c80c58631..7683bfb0f 100644
--- a/yt_dlp/webvtt.py
+++ b/yt_dlp/webvtt.py
@@ -78,7 +78,7 @@ class _MatchChildParser(_MatchParser):
class ParseError(Exception):
def __init__(self, parser):
super().__init__("Parse error at position %u (near %r)" % (
- parser._pos, parser._data[parser._pos:parser._pos + 20]
+ parser._pos, parser._data[parser._pos:parser._pos + 100]
))