mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-08-15 07:04:14 +09:00
Double quotes -> single quotes, backslash to period
Co-authored-by: dirkf <fieldhouse@gmx.net>
This commit is contained in:
parent
c1844208a2
commit
643433deb7
@ -70,8 +70,8 @@ class VidLiiIE(InfoExtractor):
|
||||
formats = []
|
||||
|
||||
def add_format(format_url, height=None):
|
||||
height = int(self._search_regex(r"(\d+).mp4",
|
||||
format_url, "height", default=360))
|
||||
height = int(self._search_regex(r'(\d+)\.mp4',
|
||||
format_url, 'height', default=360))
|
||||
|
||||
formats.append({
|
||||
'url': format_url,
|
||||
|
Loading…
x
Reference in New Issue
Block a user