upgrade to the latest pexpect

see: https://github.com/pexpect/pexpect/pull/492
see: https://github.com/ansible/tower/issues/1797
This commit is contained in:
Ryan Petrello
2018-05-29 09:43:45 -04:00
parent 0fca495792
commit 7f7f635f7b
6 changed files with 6 additions and 6 deletions

View File

@@ -101,7 +101,7 @@ def run_pexpect(args, cwd, env, logfile,
child = pexpect.spawn(
args[0], args[1:], cwd=cwd, env=env, ignore_sighup=True,
encoding='utf-8', echo=False
encoding='utf-8', echo=False, poll=True
)
child.logfile_read = logfile
canceled = False