about summary refs log tree commit diff
path: root/youtube_dl/extractor/googleplus.py
diff options
context:
space:
mode:
authordinesh <dsdiscoverdinesh@gmail.com>2014-10-11 21:10:53 +0530
committerdinesh <dsdiscoverdinesh@gmail.com>2014-10-11 21:10:53 +0530
commit071420e136ea2039d45a26cff0b704104edf533c (patch)
tree8721c2c68e822460367ada631ac0ba37cea06d41 /youtube_dl/extractor/googleplus.py
parentb7b2ca6e2b28454fdf50bfa8febad19f29af6747 (diff)
downloadyoutube-dl-071420e136ea2039d45a26cff0b704104edf533c.tar.gz
youtube-dl-071420e136ea2039d45a26cff0b704104edf533c.tar.xz
youtube-dl-071420e136ea2039d45a26cff0b704104edf533c.zip
Fix download error in GooglePlus
Diffstat (limited to 'youtube_dl/extractor/googleplus.py')
-rw-r--r--youtube_dl/extractor/googleplus.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/googleplus.py b/youtube_dl/extractor/googleplus.py
index 07d994b44..1ab5e9260 100644
--- a/youtube_dl/extractor/googleplus.py
+++ b/youtube_dl/extractor/googleplus.py
@@ -64,7 +64,7 @@ class GooglePlusIE(InfoExtractor):
         webpage = self._download_webpage(video_page, video_id, 'Downloading video page')
 
         # Extract video links all sizes
-        pattern = r'\d+,\d+,(\d+),"(http\://redirector\.googlevideo\.com.*?)"'
+        pattern = r'\d+,\d+,(\d+),"(https\://redirector\.googlevideo\.com.*?)"'
         mobj = re.findall(pattern, webpage)
         if len(mobj) == 0:
             raise ExtractorError('Unable to extract video links')