Fix --break-on-archive when pre-checking

pull/1842/head
pukkandan 2 years ago
parent 7578d77d8c
commit 5e5be0c0b2
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698

@ -1304,8 +1304,9 @@ class YoutubeDL(object):
temp_id = ie.get_temp_id(url)
if temp_id is not None and self.in_download_archive({'id': temp_id, 'ie_key': ie_key}):
self.to_screen("[%s] %s: has already been recorded in archive" % (
ie_key, temp_id))
self.to_screen(f'[{ie_key}] {temp_id}: has already been recorded in the archive')
if self.params.get('break_on_existing', False):
raise ExistingVideoReached()
break
return self.__extract_info(url, self.get_info_extractor(ie_key), download, extra_info, process)
else:

Loading…
Cancel
Save