summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-01-23 01:34:24 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-01-23 01:34:24 +0100
commit08ff6ab07e9d08853ca19cf3b8745fac11abf0f6 (patch)
tree879436912835ce67c9445269894face01535925b
parentba655a0e4c0a80bc45d648e56ec3eb5777d599ac (diff)
downloadyoutube-dl-08ff6ab07e9d08853ca19cf3b8745fac11abf0f6.tar.gz
youtube-dl-08ff6ab07e9d08853ca19cf3b8745fac11abf0f6.tar.xz
youtube-dl-08ff6ab07e9d08853ca19cf3b8745fac11abf0f6.zip
[gamestar] Modernize slightly
-rw-r--r--youtube_dl/extractor/gamestar.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/youtube_dl/extractor/gamestar.py b/youtube_dl/extractor/gamestar.py
index 50f8fc7e7..7591a151e 100644
--- a/youtube_dl/extractor/gamestar.py
+++ b/youtube_dl/extractor/gamestar.py
@@ -1,8 +1,6 @@
 # coding: utf-8
 from __future__ import unicode_literals
 
-import re
-
 from .common import InfoExtractor
 from ..utils import (
     int_or_none,
@@ -29,9 +27,7 @@ class GameStarIE(InfoExtractor):
     }
 
     def _real_extract(self, url):
-        mobj = re.match(self._VALID_URL, url)
-        video_id = mobj.group('id')
-
+        video_id = self._match_id(url)
         webpage = self._download_webpage(url, video_id)
 
         og_title = self._og_search_title(webpage)