diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-11-02 02:34:23 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-11-02 02:34:23 +0700 |
commit | 3365ea8929e53955fa1dd46b2b30492619c17055 (patch) | |
tree | e7acb23d6d300e01e3e5389a3bfdfdac65923a9c /youtube_dl | |
parent | a18aeee8030a8c4eb4c69107d181195b17d08fa2 (diff) |
[extractor/common] Remove unused code
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/common.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 7e01c5fbb..50841f0cf 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -1798,8 +1798,6 @@ class InfoExtractor(object): if ism_doc.get('IsLive') == 'TRUE' or ism_doc.find('Protection') is not None: return [] - ism_base_url = base_url(ism_url) - duration = int(ism_doc.attrib['Duration']) timescale = int_or_none(ism_doc.get('TimeScale')) or 10000000 |