mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-05 17:00:58 +01:00
fixed indent
This commit is contained in:
parent
49194e76f9
commit
af8fa6f625
1 changed files with 1 additions and 1 deletions
|
@ -991,7 +991,7 @@ class ProcProxy(threading.Thread):
|
|||
if self.p2cwrite != -1:
|
||||
self.stdin = io.open(self.p2cwrite, 'wb', -1)
|
||||
if universal_newlines:
|
||||
self.stdin = io.TextIOWrapper(self.stdin, write_through=True,
|
||||
self.stdin = io.TextIOWrapper(self.stdin, write_through=True,
|
||||
line_buffering=False)
|
||||
elif isinstance(stdin, int) and stdin != 0:
|
||||
self.stdin = io.open(stdin, 'wb', -1)
|
||||
|
|
Loading…
Add table
Reference in a new issue