Skip to content

Commit

Permalink
[webvtt] Fix 15f22b4
Browse files Browse the repository at this point in the history
  • Loading branch information
pukkandan committed Dec 12, 2023
1 parent d5d1517 commit 298230e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/webvtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,8 @@ def parse(cls, parser):
m1 = parser.consume(_REGEX_TS)
if not m1:
return None
parser.consume(_REGEX_OPTIONAL_WHITESPACE)
m2 = parser.consume(cls._REGEX_SETTINGS)
parser.consume(_REGEX_OPTIONAL_WHITESPACE)
if not parser.consume(_REGEX_NL):
return None

Expand Down

0 comments on commit 298230e

Please sign in to comment.