mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02: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]
|
||||
|
||||
# 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…
Reference in a new issue