aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-06-23 19:59:40 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-06-23 19:59:40 +0200
commit93d3a642a9cfdd268f6967dd8012e42dc4412907 (patch)
tree1010d703be2e847f3cdda3f3e0f917d23b099c94
parentc5e8d7af0ed867d70502491e3a80ee09b78ed2ce (diff)
downloadyoutube-dl-93d3a642a9cfdd268f6967dd8012e42dc4412907.tar.xz
[youtube] remove dead code
-rw-r--r--youtube_dl/extractor/youtube.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index d09128555..a7cb88b5a 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -343,7 +343,7 @@ class YoutubeIE(InfoExtractor):
request = compat_urllib_request.Request(self._AGE_URL, compat_urllib_parse.urlencode(age_form))
try:
self.report_age_confirmation()
- age_results = compat_urllib_request.urlopen(request).read().decode('utf-8')
+ compat_urllib_request.urlopen(request).read().decode('utf-8')
except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
raise ExtractorError(u'Unable to confirm age: %s' % compat_str(err))
@@ -471,7 +471,7 @@ class YoutubeIE(InfoExtractor):
self._downloader.report_warning(sub_error)
if self._downloader.params.get('listsubtitles', False):
- sub_lang_list = self._list_available_subtitles(video_id)
+ self._list_available_subtitles(video_id)
return
if 'length_seconds' not in video_info:
@@ -480,9 +480,6 @@ class YoutubeIE(InfoExtractor):
else:
video_duration = compat_urllib_parse.unquote_plus(video_info['length_seconds'][0])
- # token
- video_token = compat_urllib_parse.unquote_plus(video_info['token'][0])
-
# Decide which formats to download
req_format = self._downloader.params.get('format', None)