clean up this noise

This commit is contained in:
Jean-Paul Calderone 2021-01-11 11:39:56 -05:00
parent 4e9bdfeee4
commit ab1f6f3a59

View File

@ -149,13 +149,11 @@ def initialize():
if real_stdout: if real_stdout:
hStdout = GetStdHandle(STD_OUTPUT_HANDLE) hStdout = GetStdHandle(STD_OUTPUT_HANDLE)
if not_a_console(hStdout): if not_a_console(hStdout):
print("stdout not a console")
real_stdout = False real_stdout = False
if real_stderr: if real_stderr:
hStderr = GetStdHandle(STD_ERROR_HANDLE) hStderr = GetStdHandle(STD_ERROR_HANDLE)
if not_a_console(hStderr): if not_a_console(hStderr):
print("stdout not a console")
real_stderr = False real_stderr = False
if real_stdout: if real_stdout: