Fix typo of stderr

pull/43509/head
Joren Vrancken 6 years ago committed by Brian Coca
parent 222c907ffb
commit d5bec06150

@ -208,7 +208,7 @@ def daemonize(module, cmd):
fds = [p.stdout, p.stderr]
# loop reading output till its done
output = {p.stdout: b(""), p.sterr: b("")}
output = {p.stdout: b(""), p.stderr: b("")}
while fds:
rfd, wfd, efd = select.select(fds, [], fds, 1)
if (rfd + wfd + efd) or p.poll():

Loading…
Cancel
Save