[downloader/curl] Fix progress reporting

Bug in 8c53322cda
Closes #6490
This commit is contained in:
pukkandan 2023-03-09 21:57:44 +05:30 committed by Elyse
parent 8df470761e
commit c376b95f95
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ class ExternalFD(FragmentFD):
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):