about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-05-16 20:32:53 +0700
committerSergey M․ <dstftw@gmail.com>2014-05-16 20:32:53 +0700
commita5a45015ba07a6997c31233c8328cfa8d0f7f96b (patch)
tree79b0db27b931ce45215781c3e98800dae5d979b5
parentbeee53de06eca52d0ae042ce6fcabf319180ec14 (diff)
downloadyoutube-dl-a5a45015ba07a6997c31233c8328cfa8d0f7f96b.tar.gz
youtube-dl-a5a45015ba07a6997c31233c8328cfa8d0f7f96b.tar.xz
youtube-dl-a5a45015ba07a6997c31233c8328cfa8d0f7f96b.zip
[generic] Fix redirect
-rw-r--r--youtube_dl/extractor/generic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py
index 1ae55dc5a..286133282 100644
--- a/youtube_dl/extractor/generic.py
+++ b/youtube_dl/extractor/generic.py
@@ -672,7 +672,7 @@ class GenericIE(InfoExtractor):
             # HTML5 video
             found = re.findall(r'(?s)<video[^<]*(?:>.*?<source.*?)? src="([^"]+)"', webpage)
         if not found:
-            found = re.findall(
+            found = re.search(
                 r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
                 r'(?:[a-z-]+="[^"]+"\s+)*?content="[0-9]{,2};url=\'([^\']+)\'"',
                 webpage)