summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-11-02 02:34:23 +0700
committerSergey M․ <dstftw@gmail.com>2016-11-02 02:34:23 +0700
commit3365ea8929e53955fa1dd46b2b30492619c17055 (patch)
treee7acb23d6d300e01e3e5389a3bfdfdac65923a9c
parenta18aeee8030a8c4eb4c69107d181195b17d08fa2 (diff)
downloadyoutube-dl-3365ea8929e53955fa1dd46b2b30492619c17055.tar.gz
youtube-dl-3365ea8929e53955fa1dd46b2b30492619c17055.tar.xz
youtube-dl-3365ea8929e53955fa1dd46b2b30492619c17055.zip
[extractor/common] Remove unused code
-rw-r--r--youtube_dl/extractor/common.py2
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