Browse Source

[cracked] Modernize

master
Sergey M․ 9 years ago
parent
commit
d740333224
1 changed files with 1 additions and 2 deletions
  1. 3
      youtube_dl/extractor/cracked.py

3
youtube_dl/extractor/cracked.py

@ -37,8 +37,7 @@ class CrackedIE(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)

Loading…
Cancel
Save