aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/vevo.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/vevo.py')
-rw-r--r--yt_dlp/extractor/vevo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/extractor/vevo.py b/yt_dlp/extractor/vevo.py
index 142ac8dc2..8a0f29259 100644
--- a/yt_dlp/extractor/vevo.py
+++ b/yt_dlp/extractor/vevo.py
@@ -6,13 +6,13 @@ import json
from .common import InfoExtractor
from ..compat import (
compat_str,
- compat_urlparse,
compat_HTTPError,
)
from ..utils import (
ExtractorError,
int_or_none,
parse_iso8601,
+ parse_qs,
)
@@ -218,7 +218,7 @@ class VevoPlaylistIE(VevoBaseIE):
webpage = self._download_webpage(url, playlist_id)
- qs = compat_urlparse.parse_qs(compat_urlparse.urlparse(url).query)
+ qs = parse_qs(url)
index = qs.get('index', [None])[0]
if index: