about summary refs log tree commit diff
path: root/youtube_dl/extractor/theplatform.py
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2016-03-18 09:43:28 +0100
committerremitamine <remitamine@gmail.com>2016-03-18 09:43:28 +0100
commit87c03c6bd22e99d6410c907128ab872e79df1560 (patch)
treeef895bf6f9335404e3a94802a0b420e8511a4a22 /youtube_dl/extractor/theplatform.py
parent4c92fd2e835cde89866d3dfb1fc05d23196b19db (diff)
downloadyoutube-dl-87c03c6bd22e99d6410c907128ab872e79df1560.tar.gz
youtube-dl-87c03c6bd22e99d6410c907128ab872e79df1560.tar.xz
youtube-dl-87c03c6bd22e99d6410c907128ab872e79df1560.zip
[theplatform] remove unnecessary import
Diffstat (limited to 'youtube_dl/extractor/theplatform.py')
-rw-r--r--youtube_dl/extractor/theplatform.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/youtube_dl/extractor/theplatform.py b/youtube_dl/extractor/theplatform.py
index a148f78ce..2230dfe02 100644
--- a/youtube_dl/extractor/theplatform.py
+++ b/youtube_dl/extractor/theplatform.py
@@ -22,7 +22,6 @@ from ..utils import (
     xpath_with_ns,
     mimetype2ext,
     find_xpath_attr,
-    update_url_query,
 )
 
 default_ns = 'http://www.w3.org/2005/SMIL21/Language'
@@ -31,8 +30,7 @@ _x = lambda p: xpath_with_ns(p, {'smil': default_ns})
 
 class ThePlatformBaseIE(OnceIE):
     def _extract_theplatform_smil(self, smil_url, video_id, note='Downloading SMIL data'):
-        smil_url = update_url_query(smil_url, {'format': 'SMIL'})
-        meta = self._download_xml(smil_url, video_id, note=note)
+        meta = self._download_xml(smil_url, video_id, note=note, query={'format': 'SMIL'})
         error_element = find_xpath_attr(
             meta, _x('.//smil:ref'), 'src',
             'http://link.theplatform.com/s/errorFiles/Unavailable.mp4')