diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-02-15 02:08:32 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-02-15 02:08:32 +0700 |
commit | 3021cf83b7cd45283fd1a72859e46f44e67ce7bf (patch) | |
tree | f68c7a0c62c9a68046c482d931b7f44fcad82825 /youtube_dl/extractor/pinkbike.py | |
parent | 04a741232f8e03cc91a3539066c66aed802076b9 (diff) |
[pinkbike] Fix uploader extraction (closes #12054)
Diffstat (limited to 'youtube_dl/extractor/pinkbike.py')
-rw-r--r-- | youtube_dl/extractor/pinkbike.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/pinkbike.py b/youtube_dl/extractor/pinkbike.py index 6a4580d54..9f3501f77 100644 --- a/youtube_dl/extractor/pinkbike.py +++ b/youtube_dl/extractor/pinkbike.py @@ -64,7 +64,8 @@ class PinkbikeIE(InfoExtractor): 'video:duration', webpage, 'duration')) uploader = self._search_regex( - r'un:\s*"([^"]+)"', webpage, 'uploader', fatal=False) + r'<a[^>]+\brel=["\']author[^>]+>([^<]+)', webpage, + 'uploader', fatal=False) upload_date = unified_strdate(self._search_regex( r'class="fullTime"[^>]+title="([^"]+)"', webpage, 'upload date', fatal=False)) |