diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-10-22 22:30:06 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-10-22 22:30:06 +0200 |
commit | 7853cc5ae1f9068f3bdf59ce959cb70645b9bc20 (patch) | |
tree | 82f0855ff96d3027c2026d2460a2a6c14d0fa6cc /youtube_dl/extractor/googleplus.py | |
parent | 586a91b67f6fe7254beefc3831b4e4649f84f0ce (diff) | |
parent | b028e96144a2bf1ba84dd6d11f1cc13a2928c438 (diff) |
Merge remote-tracking branch 'origin/master'
Conflicts:
youtube_dl/YoutubeDL.py
Diffstat (limited to 'youtube_dl/extractor/googleplus.py')
-rw-r--r-- | youtube_dl/extractor/googleplus.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/googleplus.py b/youtube_dl/extractor/googleplus.py index ab12d7e93..2570746b2 100644 --- a/youtube_dl/extractor/googleplus.py +++ b/youtube_dl/extractor/googleplus.py @@ -41,9 +41,9 @@ class GooglePlusIE(InfoExtractor): # Extract update date upload_date = self._html_search_regex( - r'''(?x)<a.+?class="o-T-s\s[^"]+"\s+style="display:\s*none"\s*> + r'''(?x)<a.+?class="o-U-s\s[^"]+"\s+style="display:\s*none"\s*> ([0-9]{4}-[0-9]{2}-[0-9]{2})</a>''', - webpage, u'upload date', fatal=False) + webpage, u'upload date', fatal=False, flags=re.VERBOSE) if upload_date: # Convert timestring to a format suitable for filename upload_date = datetime.datetime.strptime(upload_date, "%Y-%m-%d") |