Browse Source

[keezmovies] Make display_id optional

Sergey M․ 9 years ago
parent
commit
92cd9fd565
1 changed files with 2 additions and 1 deletions
  1. 2 1
      youtube_dl/extractor/keezmovies.py

+ 2 - 1
youtube_dl/extractor/keezmovies.py

@@ -39,7 +39,8 @@ class KeezMoviesIE(InfoExtractor):
     def _extract_info(self, url):
         mobj = re.match(self._VALID_URL, url)
         video_id = mobj.group('id')
-        display_id = mobj.group('display_id') or video_id
+        display_id = (mobj.group('display_id') if 'display_id'
+            in mobj.groupdict() else None) or mobj.group('id')
 
         webpage = self._download_webpage(
             url, display_id, headers={'Cookie': 'age_verified=1'})