Browse Source

[vesti] Fix _VALID_URL regex

totalwebcasting
Sergey M․ 11 years ago
parent
commit
c4d197ee2d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/vesti.py

+ 1
- 1
youtube_dl/extractor/vesti.py View File

@ -13,7 +13,7 @@ from ..utils import (
class VestiIE(InfoExtractor):
IE_NAME = 'vesti'
IE_DESC = 'Вести.Ru'
_VALID_URL = r'http://(?:(?:.+?\.)?vesti\.ru|(?:2\.)?russia\.tv|tvkultura\.ru|rutv\.ru)/(?P<id>.+)'
_VALID_URL = r'http://(?:.+?\.)?(?:vesti\.ru|russia\.tv|tvkultura\.ru|rutv\.ru)/(?P<id>.+)'
_TESTS = [
{


Loading…
Cancel
Save