Skip to content

Commit 205ed0a

Browse files
authored
Fix copy-paste error
The stderr block was copied from the stdout block during initia edits, but only one instance of "stdout" was changed to "stderr".
1 parent a74ae6a commit 205ed0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SCons/Platform/win32.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def piped_spawn(sh, escape, cmd, args, env, stdout, stderr):
176176
try:
177177
with open(tmpFileStderrName, "rb") as tmpFileStderr:
178178
errors = tmpFileStderr.read()
179-
stdout.write(errors.decode(stderr.encoding, "replace"))
179+
stderr.write(errors.decode(stderr.encoding, "replace"))
180180
os.remove(tmpFileStderrName)
181181
except OSError:
182182
pass

0 commit comments

Comments
 (0)