We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76895dc commit 4f47850Copy full SHA for 4f47850
1 file changed
bin/github-backup
@@ -69,12 +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():
- if sys.platform == 'win32': return
79
80
+ return
81
ready_to_read = select.select([child.stdout, child.stderr],
82
[],
83
0 commit comments