[br] Allow '_' in the url (fixes #3311)
This commit is contained in:
parent
1e8ac8364b
commit
9dcb8f3fc7
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue