From: AndroKev Date: Wed, 17 Dec 2014 12:05:19 +0000 (+0100) Subject: only add video-id to archive, when successful X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=c33bcf2051cac1580d5161a188acc3efd54734ea;p=youtube-dl only add video-id to archive, when successful Example: no space left--> youtube-dl adds the id to archive, but the video isn't fully downloaded --- diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 8a6bcd51c..82acfe282 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1145,12 +1145,12 @@ class YoutubeDL(object): if success: try: + self.record_download_archive(info_dict) self.post_process(filename, info_dict) except (PostProcessingError) as err: self.report_error('postprocessing: %s' % str(err)) return - self.record_download_archive(info_dict) def download(self, url_list): """Download a given list of URLs."""