mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-27 12:51:25 -07:00
Fix typo of stderr
This commit is contained in:
parent
222c907ffb
commit
d5bec06150
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ def daemonize(module, cmd):
|
||||||
fds = [p.stdout, p.stderr]
|
fds = [p.stdout, p.stderr]
|
||||||
|
|
||||||
# loop reading output till its done
|
# loop reading output till its done
|
||||||
output = {p.stdout: b(""), p.sterr: b("")}
|
output = {p.stdout: b(""), p.stderr: b("")}
|
||||||
while fds:
|
while fds:
|
||||||
rfd, wfd, efd = select.select(fds, [], fds, 1)
|
rfd, wfd, efd = select.select(fds, [], fds, 1)
|
||||||
if (rfd + wfd + efd) or p.poll():
|
if (rfd + wfd + efd) or p.poll():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue