Browse Source

[novamov] Modernize

totalwebcasting
Sergey M․ 9 years ago
parent
commit
699ed30cee
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      youtube_dl/extractor/novamov.py

+ 1
- 2
youtube_dl/extractor/novamov.py View File

@ -42,8 +42,7 @@ class NovaMovIE(InfoExtractor):
}
def _real_extract(self, url):
mobj = re.match(self._VALID_URL, url)
video_id = mobj.group('id')
video_id = self._match_id(url)
url = 'http://%s/video/%s' % (self._HOST, video_id)


Loading…
Cancel
Save