summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2019-04-30 04:49:12 +0700
committerSergey M․ <dstftw@gmail.com>2019-04-30 04:49:12 +0700
commita61ce71468cb222338ccd8039dc631f3619dc585 (patch)
tree19797578ed3a81034cf82fcbd54b7ef1be1dc62b
parent026fbedc855fa2870664798e03f58447b3a61a7e (diff)
downloadyoutube-dl-a61ce71468cb222338ccd8039dc631f3619dc585.tar.gz
youtube-dl-a61ce71468cb222338ccd8039dc631f3619dc585.tar.xz
youtube-dl-a61ce71468cb222338ccd8039dc631f3619dc585.zip
[youtube] Remove info el for get_video_info request
Since it does not work for quite a long time
-rw-r--r--youtube_dl/extractor/youtube.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index 88dba1353..9d542f893 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -1715,7 +1715,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
                 # The general idea is to take a union of itags of both DASH manifests (for example
                 # video with such 'manifest behavior' see https://github.com/ytdl-org/youtube-dl/issues/6093)
                 self.report_video_info_webpage_download(video_id)
-                for el in ('info', 'embedded', 'detailpage', 'vevo', ''):
+                for el in ('embedded', 'detailpage', 'vevo', ''):
                     query = {
                         'video_id': video_id,
                         'ps': 'default',