aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/sina.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/sina.py')
-rw-r--r--yt_dlp/extractor/sina.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/yt_dlp/extractor/sina.py b/yt_dlp/extractor/sina.py
index 408311418..b62b0c3e5 100644
--- a/yt_dlp/extractor/sina.py
+++ b/yt_dlp/extractor/sina.py
@@ -1,7 +1,6 @@
# coding: utf-8
from __future__ import unicode_literals
-import re
from .common import InfoExtractor
from ..utils import (
@@ -56,7 +55,7 @@ class SinaIE(InfoExtractor):
]
def _real_extract(self, url):
- mobj = re.match(self._VALID_URL, url)
+ mobj = self._match_valid_url(url)
video_id = mobj.group('id')
if not video_id: