From 5122028a4bcac4ae577ef7fbd55ccad5cb34ef5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Mon, 18 Oct 2021 15:24:21 -0500 Subject: update from upstream --- hypervideo_dl/extractor/pladform.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hypervideo_dl/extractor/pladform.py') diff --git a/hypervideo_dl/extractor/pladform.py b/hypervideo_dl/extractor/pladform.py index e86c653..dc20300 100644 --- a/hypervideo_dl/extractor/pladform.py +++ b/hypervideo_dl/extractor/pladform.py @@ -4,11 +4,11 @@ from __future__ import unicode_literals import re from .common import InfoExtractor -from ..compat import compat_urlparse from ..utils import ( determine_ext, ExtractorError, int_or_none, + parse_qs, xpath_text, qualities, ) @@ -56,7 +56,7 @@ class PladformIE(InfoExtractor): def _real_extract(self, url): video_id = self._match_id(url) - qs = compat_urlparse.parse_qs(compat_urlparse.urlparse(url).query) + qs = parse_qs(url) pl = qs.get('pl', ['1'])[0] video = self._download_xml( -- cgit v1.2.3