mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-18 14:51:09 +00:00
Fix typo of stderr
This commit is contained in:
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():
|
||||
|
||||
Reference in New Issue
Block a user