Don't discard stderr.

R=maruel@chromium.org
NOTRY=true

Review URL: https://codereview.chromium.org/14643009

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@197419 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
szager@chromium.org
2013-04-30 19:10:52 +00:00
parent d1e266d219
commit b054ebc8f3
2 changed files with 8 additions and 1 deletions

View File

@@ -355,7 +355,6 @@ class Popen(subprocess.Popen):
self._tee_threads(input)
if stdout is not None:
stdout = ''.join(stdout)
stderr = None
if stderr is not None:
stderr = ''.join(stderr)
return (stdout, stderr)