This commit is contained in:
jbannon 2022-05-27 05:36:28 +00:00
parent 5a5b13d527
commit a81561eaff

View file

@ -73,7 +73,9 @@ class Downloader(Generic[DownloaderOptionsT, DownloaderEntryT], ABC):
# If a download archive file name is provided, set it to that # If a download archive file name is provided, set it to that
if download_archive_file_name: if download_archive_file_name:
ytdl_options["download_archive"] = str(Path(working_directory) / download_archive_file_name) ytdl_options["download_archive"] = str(
Path(working_directory) / download_archive_file_name
)
return ytdl_options return ytdl_options