diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-02-17 21:46:20 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-02-17 21:46:20 +0100 |
commit | fa156077737d5162795a221fe2995a276d31c6d3 (patch) | |
tree | e2a9cd731879aaedbaf8ba439d8c37d9c95aaa00 /youtube_dl/extractor/common.py | |
parent | 16e7711e22648027739096560914a976b8eea786 (diff) |
PEP8 fixes
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r-- | youtube_dl/extractor/common.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 31599bf52..08b8ad37c 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -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(): |