update check_io() to allow scripts to run on Windows

This commit is contained in:
Sam Libby
2017-12-10 21:44:26 -07:00
committed by GitHub
parent 1d50a4038b
commit 76895dcf69

View File

@@ -74,6 +74,7 @@ def logging_subprocess(popenargs,
child.stderr: stderr_log_level}
def check_io():
if sys.platform == 'win32': return
ready_to_read = select.select([child.stdout, child.stderr],
[],
[],