mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[downloader/curl] Fix progress reporting
Bug in 8c53322cda
Closes #6490
This commit is contained in:
parent
3588be59ce
commit
66aeaac9aa
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ def _call_downloader(self, tmpfilename, info_dict):
|
|||
return 0
|
||||
|
||||
def _call_process(self, cmd, info_dict):
|
||||
return Popen.run(cmd, text=True, stderr=subprocess.PIPE)
|
||||
return Popen.run(cmd, text=True, stderr=subprocess.PIPE if self._CAPTURE_STDERR else None)
|
||||
|
||||
|
||||
class CurlFD(ExternalFD):
|
||||
|
|
Loading…
Reference in a new issue