aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/giantbomb.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/giantbomb.py')
-rw-r--r--yt_dlp/extractor/giantbomb.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/yt_dlp/extractor/giantbomb.py b/yt_dlp/extractor/giantbomb.py
index c6477958d..1920923fc 100644
--- a/yt_dlp/extractor/giantbomb.py
+++ b/yt_dlp/extractor/giantbomb.py
@@ -1,6 +1,5 @@
from __future__ import unicode_literals
-import re
import json
from .common import InfoExtractor
@@ -32,7 +31,7 @@ class GiantBombIE(InfoExtractor):
}]
def _real_extract(self, url):
- mobj = re.match(self._VALID_URL, url)
+ mobj = self._match_valid_url(url)
video_id = mobj.group('id')
display_id = mobj.group('display_id')