diff options
Diffstat (limited to 'hypervideo_dl/extractor/dbtv.py')
-rw-r--r-- | hypervideo_dl/extractor/dbtv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hypervideo_dl/extractor/dbtv.py b/hypervideo_dl/extractor/dbtv.py index aaedf2e..8e73176 100644 --- a/hypervideo_dl/extractor/dbtv.py +++ b/hypervideo_dl/extractor/dbtv.py @@ -38,7 +38,7 @@ class DBTVIE(InfoExtractor): webpage)] def _real_extract(self, url): - display_id, video_id = re.match(self._VALID_URL, url).groups() + display_id, video_id = self._match_valid_url(url).groups() info = { '_type': 'url_transparent', 'id': video_id, |