From 071420e136ea2039d45a26cff0b704104edf533c Mon Sep 17 00:00:00 2001 From: dinesh Date: Sat, 11 Oct 2014 21:10:53 +0530 Subject: [PATCH] Fix download error in GooglePlus --- youtube_dl/extractor/googleplus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')