diff options
author | AndroKev <AndroKev@users.noreply.github.com> | 2014-12-17 13:21:22 +0100 |
---|---|---|
committer | AndroKev <AndroKev@users.noreply.github.com> | 2014-12-17 13:21:22 +0100 |
commit | cd58dc3e56b2efa955bda6ced7105df2bb790e63 (patch) | |
tree | ef946847df1f0727614ae571d72cb8df78b67a76 /youtube_dl/YoutubeDL.py | |
parent | c33bcf2051cac1580d5161a188acc3efd54734ea (diff) |
Update YoutubeDL.py
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 82acfe282..30f1cd1ee 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1145,11 +1145,11 @@ 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): |