mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-08-14 18:49:06 -07:00
PEP8 fixes
This commit is contained in:
parent
16e7711e22
commit
fa15607773
3 changed files with 3 additions and 3 deletions
|
@ -27,7 +27,6 @@ from ..utils import (
|
|||
compiled_regex_type,
|
||||
ExtractorError,
|
||||
float_or_none,
|
||||
HEADRequest,
|
||||
int_or_none,
|
||||
RegexNotFoundError,
|
||||
sanitize_filename,
|
||||
|
@ -839,7 +838,7 @@ class InfoExtractor(object):
|
|||
note='Downloading m3u8 information',
|
||||
errnote='Failed to download m3u8 information')
|
||||
last_info = None
|
||||
last_media= None
|
||||
last_media = None
|
||||
kv_rex = re.compile(
|
||||
r'(?P<key>[a-zA-Z_-]+)=(?P<val>"[^"]+"|[^",]+)(?:,|$)')
|
||||
for line in m3u8_doc.splitlines():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue