summary refs log tree commit diff
diff options
context:
space:
mode:
authorRicardo Garcia <sarbalap+freshmeat@gmail.com>2010-09-11 09:47:21 +0200
committerRicardo Garcia <sarbalap+freshmeat@gmail.com>2010-10-31 11:28:41 +0100
commit33407be7d69a5d59e72d8e6eff1e785c9810db4d (patch)
treef5bcc3f8ff6508d5130c4f44bca88670b9fd36a4
parent8e686771af73876f93e44c52dc0dcaf99a56b6f7 (diff)
downloadyoutube-dl-33407be7d69a5d59e72d8e6eff1e785c9810db4d.tar.gz
youtube-dl-33407be7d69a5d59e72d8e6eff1e785c9810db4d.tar.xz
youtube-dl-33407be7d69a5d59e72d8e6eff1e785c9810db4d.zip
Fix "unable to extract uploader nickname" error with Dailymotion
-rwxr-xr-xyoutube-dl2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl
index c850f26b3..379033621 100755
--- 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