mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-08-15 15:14: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 = []
|
formats = []
|
||||||
|
|
||||||
def add_format(format_url, height=None):
|
def add_format(format_url, height=None):
|
||||||
height = int(self._search_regex(r"(\d+).mp4",
|
height = int(self._search_regex(r'(\d+)\.mp4',
|
||||||
format_url, "height", default=360))
|
format_url, 'height', default=360))
|
||||||
|
|
||||||
formats.append({
|
formats.append({
|
||||||
'url': format_url,
|
'url': format_url,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user