Browse Source

[downloader/external:curl] Clarify why CurlFD should not capture stderr

master
Remita Amine 8 years ago
parent
commit
acfccacad5
1 changed files with 1 additions and 0 deletions
  1. 1
      youtube_dl/downloader/external.py

1
youtube_dl/downloader/external.py

@ -114,6 +114,7 @@ class CurlFD(ExternalFD):
self._debug_cmd(cmd) self._debug_cmd(cmd)
# curl writes the progress to stderr so don't capture it.
p = subprocess.Popen(cmd) p = subprocess.Popen(cmd)
p.communicate() p.communicate()
return p.returncode return p.returncode

Loading…
Cancel
Save