From: Philipp Hagemeister Date: Sat, 12 Jan 2013 14:12:28 +0000 (+0100) Subject: Keep file without any PPs (oops, missed the obvious case) X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=youtube-dl;a=commitdiff_plain;h=1d16b0c3fe6b12552481a86e55cb9a2edf768f73 Keep file without any PPs (oops, missed the obvious case) --- diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py index f0879a675..51df4c175 100644 --- a/youtube_dl/FileDownloader.py +++ b/youtube_dl/FileDownloader.py @@ -545,7 +545,7 @@ class FileDownloader(object): keep_video = keep_video_wish except PostProcessingError as e: self.to_stderr(u'ERROR: ' + e.msg) - if not keep_video and not self.params.get('keepvideo', False): + 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) os.remove(encodeFilename(filename))