youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 33407be7d69a5d59e72d8e6eff1e785c9810db4d
parent 8e686771af73876f93e44c52dc0dcaf99a56b6f7
Author: Ricardo Garcia <sarbalap+freshmeat@gmail.com>
Date:   Sat, 11 Sep 2010 09:47:21 +0200

Fix "unable to extract uploader nickname" error with Dailymotion

Diffstat:
Myoutube-dl | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube-dl b/youtube-dl @@ -1158,7 +1158,7 @@ class DailymotionIE(InfoExtractor): video_title = mobj.group(1).decode('utf-8') video_title = sanitize_title(video_title) - mobj = re.search(r'(?im)<div class="dmco_html owner">.*?<a class="name" href="/.+?">(.+?)</a></div>', webpage) + mobj = re.search(r'(?im)<div class="dmco_html owner">.*?<a class="name" href="/.+?">(.+?)</a>', webpage) if mobj is None: self._downloader.trouble(u'ERROR: unable to extract uploader nickname') return