We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1d50a40 + 4f47850 commit fb2c3caCopy full SHA for fb2c3ca
bin/github-backup
@@ -69,11 +69,15 @@ def logging_subprocess(popenargs,
69
"""
70
child = subprocess.Popen(popenargs, stdout=subprocess.PIPE,
71
stderr=subprocess.PIPE, **kwargs)
72
+ if sys.platform == 'win32':
73
+ log_info("Windows operating system detected - no subprocess logging will be returned")
74
75
log_level = {child.stdout: stdout_log_level,
76
child.stderr: stderr_log_level}
77
78
def check_io():
79
80
+ return
81
ready_to_read = select.select([child.stdout, child.stderr],
82
[],
83
0 commit comments