diff --git a/youtube-dl b/youtube-dl index 375c93e74..41bca55f7 100755 --- a/youtube-dl +++ b/youtube-dl @@ -1752,9 +1752,11 @@ class DailymotionIE(InfoExtractor): mobj = re.search(r'(?im)[^<]+?]+?>([^<]+?)', webpage) if mobj is None: - self._downloader.trouble(u'ERROR: unable to extract uploader nickname') - return - video_uploader = mobj.group(1) + video_uploader = "Unknown" + #you need to use -i option to discard this error + self._downloader.trouble(u'WARNING: unable to extract uploader nickname') + else: + video_uploader = mobj.group(1) try: # Process video information