mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[downloader] Handle a file ./- (Fixes #4498)
This commit is contained in:
parent
a91c9b15e3
commit
fdc8000810
1 changed files with 1 additions and 1 deletions
|
@ -285,7 +285,7 @@ def download(self, filename, info_dict):
|
|||
Return True on success and False otherwise
|
||||
"""
|
||||
# Check file already present
|
||||
if self.params.get('continuedl', False) and os.path.isfile(encodeFilename(filename)) and not self.params.get('nopart', False):
|
||||
if filename != '-' and self.params.get('continuedl', False) and os.path.isfile(encodeFilename(filename)) and not self.params.get('nopart', False):
|
||||
self.report_file_already_downloaded(filename)
|
||||
self._hook_progress({
|
||||
'filename': filename,
|
||||
|
|
Loading…
Reference in a new issue