From: dinesh Date: Sat, 11 Oct 2014 15:40:53 +0000 (+0530) Subject: Fix download error in GooglePlus X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=commitdiff_plain;h=071420e136ea2039d45a26cff0b704104edf533c;p=youtube-dl.git Fix download error in GooglePlus --- 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')