Skip to content

Commit

Permalink
print WARNINGs during test + minor fix to NBAIE
Browse files Browse the repository at this point in the history
  • Loading branch information
FiloSottile committed Jun 6, 2013
1 parent 468e2e9 commit 476203d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions test/test_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,18 @@ def _try_rm(filename):

class FileDownloader(youtube_dl.FileDownloader):
def __init__(self, *args, **kwargs):
self._to_stderr = self.to_stderr
self.to_stderr = self.to_screen
self.processed_info_dicts = []
return youtube_dl.FileDownloader.__init__(self, *args, **kwargs)
def report_warning(self, message):
# let warnings pass to output
if sys.stderr.isatty() and os.name != 'nt':
_msg_header=u'\033[0;33mWARNING:\033[0m'
else:
_msg_header=u'WARNING:'
warning_message=u'%s %s' % (_msg_header,message)
self._to_stderr(warning_message)
def process_info(self, info_dict):
self.processed_info_dicts.append(info_dict)
return youtube_dl.FileDownloader.process_info(self, info_dict)
Expand Down
2 changes: 1 addition & 1 deletion youtube_dl/InfoExtractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -3183,7 +3183,7 @@ def _real_extract(self, url):

uploader_date = self._search_regex(r'<b>Date:</b> (.*?)</div>', webpage, 'upload_date', fatal=False)

description = self._search_regex(r'<div class="description">(.*?)</h1>', webpage, 'description', fatal=False)
description = self._search_regex(r'<meta name="description" (?:content|value)="(.*?)" />', webpage, 'description', fatal=False)

info = {
'id': shortened_video_id,
Expand Down

0 comments on commit 476203d

Please sign in to comment.