aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-11-12 20:50:52 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-11-12 20:50:52 +0100
commit8b8cbd8f6d3b525dcee3bc3df98c1ad0f093231d (patch)
tree5a8af2ddfb18bc6d2fa9d962a930a7cae764d424
parent72b18c5d34d7bf02f83d335b886921ff25c501f9 (diff)
downloadyoutube-dl-8b8cbd8f6d3b525dcee3bc3df98c1ad0f093231d.tar.xz
[vine] Fix uploader extraction
-rw-r--r--youtube_dl/extractor/vine.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vine.py b/youtube_dl/extractor/vine.py
index c4ec1f06f..651ba317d 100644
--- a/youtube_dl/extractor/vine.py
+++ b/youtube_dl/extractor/vine.py
@@ -27,7 +27,7 @@ class VineIE(InfoExtractor):
video_url = self._html_search_regex(r'<meta property="twitter:player:stream" content="(.+?)"',
webpage, u'video URL')
- uploader = self._html_search_regex(r'<div class="user">.*?<h2>(.+?)</h2>',
+ uploader = self._html_search_regex(r'<p class="username">(.*?)</p>',
webpage, u'uploader', fatal=False, flags=re.DOTALL)
return [{