mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-14 14:28:00 +09:00
Keep file without any PPs (oops, missed the obvious case)
This commit is contained in:
parent
7851b37993
commit
1d16b0c3fe
@ -545,7 +545,7 @@ class FileDownloader(object):
|
|||||||
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.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:
|
try:
|
||||||
self.to_stderr(u'Deleting original file %s (pass -k to keep)' % filename)
|
self.to_stderr(u'Deleting original file %s (pass -k to keep)' % filename)
|
||||||
os.remove(encodeFilename(filename))
|
os.remove(encodeFilename(filename))
|
||||||
|
Loading…
Reference in New Issue
Block a user