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
This commit is contained in:
James Cammarata 2013-08-21 22:37:09 -05:00
parent 12a0a01cb0
commit af4f0bd008

View file

@ -363,7 +363,10 @@ class Runner(object):
return flags
try:
self._new_stdin = new_stdin
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)
if type(exec_rc) != ReturnData: