aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/YoutubeDL.py
diff options
context:
space:
mode:
authorAndroKev <AndroKev@users.noreply.github.com>2014-12-17 13:21:22 +0100
committerAndroKev <AndroKev@users.noreply.github.com>2014-12-17 13:21:22 +0100
commitcd58dc3e56b2efa955bda6ced7105df2bb790e63 (patch)
treeef946847df1f0727614ae571d72cb8df78b67a76 /youtube_dl/YoutubeDL.py
parentc33bcf2051cac1580d5161a188acc3efd54734ea (diff)
downloadyoutube-dl-cd58dc3e56b2efa955bda6ced7105df2bb790e63.tar.xz
Update YoutubeDL.py
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-xyoutube_dl/YoutubeDL.py2
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):