aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/pluralsight.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-08-23 00:32:00 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2021-08-23 00:50:43 +0530
commit4dfbf8696b0c614eee480b44a86959b9a055fb97 (patch)
tree3b8c9c9a5d34112804df6c03885754c0a0d51cc8 /yt_dlp/extractor/pluralsight.py
parent8fc54b1230e360fe6543bbbe8eea19ca2e8e06f3 (diff)
downloadhypervideo-pre-4dfbf8696b0c614eee480b44a86959b9a055fb97.tar.lz
hypervideo-pre-4dfbf8696b0c614eee480b44a86959b9a055fb97.tar.xz
hypervideo-pre-4dfbf8696b0c614eee480b44a86959b9a055fb97.zip
[utils] Add `parse_qs`
Diffstat (limited to 'yt_dlp/extractor/pluralsight.py')
-rw-r--r--yt_dlp/extractor/pluralsight.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/yt_dlp/extractor/pluralsight.py b/yt_dlp/extractor/pluralsight.py
index d494753e6..801057ee1 100644
--- a/yt_dlp/extractor/pluralsight.py
+++ b/yt_dlp/extractor/pluralsight.py
@@ -17,6 +17,7 @@ from ..utils import (
float_or_none,
int_or_none,
parse_duration,
+ parse_qs,
qualities,
srt_subtitles_timecode,
try_get,
@@ -273,7 +274,7 @@ query viewClip {
return srt
def _real_extract(self, url):
- qs = compat_urlparse.parse_qs(compat_urlparse.urlparse(url).query)
+ qs = parse_qs(url)
author = qs.get('author', [None])[0]
name = qs.get('name', [None])[0]