diff options
author | dinesh <dsdiscoverdinesh@gmail.com> | 2014-10-11 21:10:53 +0530 |
---|---|---|
committer | dinesh <dsdiscoverdinesh@gmail.com> | 2014-10-11 21:10:53 +0530 |
commit | 071420e136ea2039d45a26cff0b704104edf533c (patch) | |
tree | 8721c2c68e822460367ada631ac0ba37cea06d41 /youtube_dl/extractor | |
parent | b7b2ca6e2b28454fdf50bfa8febad19f29af6747 (diff) |
Fix download error in GooglePlus
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/googleplus.py | 2 |
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') |