youtube-dl

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

commit f03b88b3fb67a14998186787ba5c90f3e2c96a7b
parent 97d0365f49e9662c88b14eb8c32dc4cb52933ae6
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Mon, 25 Feb 2013 00:35:12 +0100

Merge remote-tracking branch 'joksnet/not_keep_video_message'

Diffstat:
Myoutube_dl/FileDownloader.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py @@ -552,7 +552,7 @@ class FileDownloader(object): self.to_stderr(u'ERROR: ' + e.msg) if keep_video is False and not self.params.get('keepvideo', False): try: - self.to_stderr(u'Deleting original file %s (pass -k to keep)' % filename) + self.to_screen(u'Deleting original file %s (pass -k to keep)' % filename) os.remove(encodeFilename(filename)) except (IOError, OSError): self.to_stderr(u'WARNING: Unable to remove downloaded video file')