aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/streamcz.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/extractor/streamcz.py')
-rw-r--r--youtube_dl/extractor/streamcz.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/streamcz.py b/youtube_dl/extractor/streamcz.py
index 0191c77de..998342e93 100644
--- a/youtube_dl/extractor/streamcz.py
+++ b/youtube_dl/extractor/streamcz.py
@@ -1,5 +1,6 @@
# coding: utf-8
import json
+import re
from .common import InfoExtractor
from ..utils import (
@@ -55,7 +56,7 @@ class StreamCZIE(InfoExtractor):
}
def _real_extract(self, url):
- display_id, video_id = self._match_valid_url(url).groups()
+ display_id, video_id = re.match(self._VALID_URL, url).groups()
data = self._download_json(
'https://www.televizeseznam.cz/api/graphql', video_id, 'Downloading GraphQL result',