From 56200b7e1c27f45cda06c734012a22d5ee7cdf9f Mon Sep 17 00:00:00 2001 From: Mort Yao Date: Fri, 15 Feb 2013 00:33:52 +0100 Subject: [PATCH] Google+: fix #107 --- src/you_get/downloader/googleplus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/you_get/downloader/googleplus.py b/src/you_get/downloader/googleplus.py index 6b9257fa..2c106a70 100644 --- a/src/you_get/downloader/googleplus.py +++ b/src/you_get/downloader/googleplus.py @@ -15,7 +15,7 @@ def googleplus_download(url, output_dir = '.', merge = True, info_only = False): title = r1(r'(.*)', html) or r1(r'(.*)\n', html) - url2 = r1(r'"(https\://plus\.google\.com/photos/.*?)",,"image/jpeg","video"\]', html) + url2 = r1(r'<a href="([^"]+)" target="_blank" class="Mn" >', html) if url2: html = get_html(url2) html = parse.unquote(html.replace('\/', '/'))