summary refs log tree commit diff
diff options
context:
space:
mode:
authorFilippo Valsorda <filippo.valsorda@gmail.com>2013-03-29 15:31:38 +0100
committerFilippo Valsorda <filippo.valsorda@gmail.com>2013-03-29 15:31:38 +0100
commit1f46c152628bdd6b97212ced758b9f83063b5820 (patch)
tree453d0eaea38858f85af5839784085f90c8767dad
parent0cd358676c06cc5915b3fb98388645833da4d7e0 (diff)
downloadyoutube-dl-1f46c152628bdd6b97212ced758b9f83063b5820.tar.gz
youtube-dl-1f46c152628bdd6b97212ced758b9f83063b5820.tar.xz
youtube-dl-1f46c152628bdd6b97212ced758b9f83063b5820.zip
fix SpiegelIE
-rwxr-xr-xyoutube_dl/InfoExtractors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py
index 45a23989a..83cb32196 100755
--- a/youtube_dl/InfoExtractors.py
+++ b/youtube_dl/InfoExtractors.py
@@ -4128,7 +4128,7 @@ class MySpassIE(InfoExtractor):
         return [info]
 
 class SpiegelIE(InfoExtractor):
-    _VALID_URL = r'https?://(?:www\.)?spiegel\.de/video/[^/]*-(?P<videoID>[0-9]+)(?:\.html)?(?:#.*)$'
+    _VALID_URL = r'https?://(?:www\.)?spiegel\.de/video/[^/]*-(?P<videoID>[0-9]+)(?:\.html)?(?:#.*)?$'
 
     def _real_extract(self, url):
         m = re.match(self._VALID_URL, url)