Browse Source

[br] Allow '_' in the url (fixes #3311)

totalwebcasting
Jaime Marquínez Ferrándiz 10 years ago
parent
commit
9dcb8f3fc7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/br.py

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

@ -12,7 +12,7 @@ from ..utils import (
class BRIE(InfoExtractor):
IE_DESC = 'Bayerischer Rundfunk Mediathek'
_VALID_URL = r'https?://(?:www\.)?br\.de/(?:[a-z0-9\-]+/)+(?P<id>[a-z0-9\-]+)\.html'
_VALID_URL = r'https?://(?:www\.)?br\.de/(?:[a-z0-9\-_]+/)+(?P<id>[a-z0-9\-_]+)\.html'
_BASE_URL = 'http://www.br.de'
_TESTS = [


Loading…
Cancel
Save