aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-08-01 11:40:34 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-08-01 11:40:34 +0200
commit525a87f58ee9c4ee91b5b0384184dabf6d87eef3 (patch)
tree1841889ab66001ed539a43832308170c2497966d
parent44cae2fb2e7b8cffcdfdd57b1224115345009cc5 (diff)
downloadyoutube-dl-525a87f58ee9c4ee91b5b0384184dabf6d87eef3.tar.xz
[gdcvault] Fix typo: xml_decription_url -> xml_description_url
-rw-r--r--youtube_dl/extractor/gdcvault.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/gdcvault.py b/youtube_dl/extractor/gdcvault.py
index c3017d451..a6834db43 100644
--- a/youtube_dl/extractor/gdcvault.py
+++ b/youtube_dl/extractor/gdcvault.py
@@ -183,8 +183,8 @@ class GDCVaultIE(InfoExtractor):
# Fallback to the older format
xml_name = self._html_search_regex(r'<iframe src=".*?\?xmlURL=xml/(?P<xml_file>.+?\.xml).*?".*?</iframe>', start_page, 'xml filename')
- xml_decription_url = xml_root + 'xml/' + xml_name
- xml_description = self._download_xml(xml_decription_url, display_id)
+ xml_description_url = xml_root + 'xml/' + xml_name
+ xml_description = self._download_xml(xml_description_url, display_id)
video_title = xml_description.find('./metadata/title').text
video_formats = self._parse_mp4(xml_description)