Commit af4f0bd0 by James Cammarata

Fix for "argument must be an int, or have a fileno() method" error

The issue was that, when forks == 1, the _executor() function was
being called with None for the value of new_stdin.

Fixes #3841, #3902
parent 12a0a01c
......@@ -363,6 +363,9 @@ class Runner(object):
return flags
try:
if not new_stdin:
self._new_stdin = os.fdopen(os.dup(sys.stdin.fileno()))
else:
self._new_stdin = new_stdin
exec_rc = self._executor_internal(host, new_stdin)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment