summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-07-21 20:42:20 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-07-21 20:43:56 +0200
commit9dcb8f3fc7927a6a3e6f4747f64c6f8c3900cdc7 (patch)
tree84a4f4798ddc9105c4ac808e96715c4411772b46
parent1e8ac8364b09259b5bfa277304f5fb31906b8801 (diff)
downloadyoutube-dl-9dcb8f3fc7927a6a3e6f4747f64c6f8c3900cdc7.tar.gz
youtube-dl-9dcb8f3fc7927a6a3e6f4747f64c6f8c3900cdc7.tar.xz
youtube-dl-9dcb8f3fc7927a6a3e6f4747f64c6f8c3900cdc7.zip
[br] Allow '_' in the url (fixes #3311)
-rw-r--r--youtube_dl/extractor/br.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/br.py b/youtube_dl/extractor/br.py
index 993360714..f7f2f713a 100644
--- a/youtube_dl/extractor/br.py
+++ b/youtube_dl/extractor/br.py
@@ -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 = [