summaryrefslogtreecommitdiff
path: root/host/proto
diff options
context:
space:
mode:
Diffstat (limited to 'host/proto')
-rw-r--r--host/proto/popen_io.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/proto/popen_io.py b/host/proto/popen_io.py
index f1c3cb84..235151d3 100644
--- a/host/proto/popen_io.py
+++ b/host/proto/popen_io.py
@@ -30,7 +30,7 @@ class PopenIO:
def __init__ (self, cmd):
"""Initialise and start the given commande line."""
- fout, fin = os.popen2 (cmd, 'b', 1)
+ fout, fin = os.popen2 (cmd, 'b', 0)
time.sleep (0.2)
self.fin = fin
self.fout = fout