Browse Source

Switch some calls to to_stderr to report_error and report_warning

Jaime Marquínez Ferrándiz 12 years ago
parent
commit
bbcbf4d459
2 changed files with 2 additions and 2 deletions
  1. 1 1
      youtube_dl/PostProcessor.py
  2. 1 1
      youtube_dl/YoutubeDL.py

+ 1 - 1
youtube_dl/PostProcessor.py

@@ -208,7 +208,7 @@ class FFmpegExtractAudioPP(FFmpegPostProcessor):
             try:
             try:
                 os.utime(encodeFilename(new_path), (time.time(), information['filetime']))
                 os.utime(encodeFilename(new_path), (time.time(), information['filetime']))
             except:
             except:
-                self._downloader.to_stderr(u'WARNING: Cannot update utime of audio file')
+                self._downloader.report_warning(u'Cannot update utime of audio file')
 
 
         information['filepath'] = new_path
         information['filepath'] = new_path
         return self._nopostoverwrites,information
         return self._nopostoverwrites,information

+ 1 - 1
youtube_dl/YoutubeDL.py

@@ -594,7 +594,7 @@ class YoutubeDL(object):
                         # No clear decision yet, let IE decide
                         # No clear decision yet, let IE decide
                         keep_video = keep_video_wish
                         keep_video = keep_video_wish
             except PostProcessingError as e:
             except PostProcessingError as e:
-                self.to_stderr(u'ERROR: ' + e.msg)
+                self.report_error(e.msg)
         if keep_video is False and not self.params.get('keepvideo', False):
         if keep_video is False and not self.params.get('keepvideo', False):
             try:
             try:
                 self.to_screen(u'Deleting original file %s (pass -k to keep)' % filename)
                 self.to_screen(u'Deleting original file %s (pass -k to keep)' % filename)