From a130adb25bb16422a4a03da9252f09839d490494 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Sun, 23 Jun 2013 19:41:28 +0200 Subject: [PATCH] [Statigr.am] Correct uploader id --- youtube_dl/InfoExtractors.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 574d417be..f25732bf5 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -4593,8 +4593,8 @@ class StatigramIE(InfoExtractor): r'(.+?)', webpage, u'title') title = html_title.rpartition(u' | Statigram')[0] - uploader = self._html_search_regex( - r'@(.+) \(Videos\)', title, u'uploader name', fatal=False) + uploader_id = self._html_search_regex( + r'@([^ ]+)', title, u'uploader name', fatal=False) ext = 'mp4' return [{ @@ -4603,7 +4603,7 @@ class StatigramIE(InfoExtractor): 'ext': ext, 'title': title, 'thumbnail': thumbnail_url, - 'uploader' : uploader + 'uploader_id' : uploader_id }] def gen_extractors(): -- 2.30.2