aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/uplynk.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/uplynk.py')
-rw-r--r--yt_dlp/extractor/uplynk.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/yt_dlp/extractor/uplynk.py b/yt_dlp/extractor/uplynk.py
index 04c96f388..9b560f719 100644
--- a/yt_dlp/extractor/uplynk.py
+++ b/yt_dlp/extractor/uplynk.py
@@ -52,10 +52,9 @@ class UplynkIE(InfoExtractor):
return self._extract_uplynk_info(url)
-class UplynkPreplayIE(UplynkIE):
+class UplynkPreplayIE(UplynkIE): # XXX: Do not subclass from concrete IE
IE_NAME = 'uplynk:preplay'
_VALID_URL = r'https?://.*?\.uplynk\.com/preplay2?/(?P<path>ext/[0-9a-f]{32}/(?P<external_id>[^/?&]+)|(?P<id>[0-9a-f]{32}))\.json'
- _TEST = None
def _real_extract(self, url):
path, external_id, video_id = self._match_valid_url(url).groups()