aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/gaia.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/gaia.py')
-rw-r--r--hypervideo_dl/extractor/gaia.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/hypervideo_dl/extractor/gaia.py b/hypervideo_dl/extractor/gaia.py
index e952775..7821fb7 100644
--- a/hypervideo_dl/extractor/gaia.py
+++ b/hypervideo_dl/extractor/gaia.py
@@ -1,7 +1,6 @@
# coding: utf-8
from __future__ import unicode_literals
-import re
from .common import InfoExtractor
from ..compat import (
@@ -76,7 +75,7 @@ class GaiaIE(InfoExtractor):
self._jwt = auth.get('jwt')
def _real_extract(self, url):
- display_id, vtype = re.search(self._VALID_URL, url).groups()
+ display_id, vtype = self._match_valid_url(url).groups()
node_id = self._download_json(
'https://brooklyn.gaia.com/pathinfo', display_id, query={
'path': 'video/' + display_id,