summaryrefslogtreecommitdiffstats
path: root/subcmds
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds')
-rw-r--r--subcmds/forall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/forall.py b/subcmds/forall.py
index 96eac541..131ba676 100644
--- a/subcmds/forall.py
+++ b/subcmds/forall.py
@@ -366,7 +366,7 @@ def DoWork(project, mirror, opt, cmd, shell, cnt, config):
366 while not s_in.is_done: 366 while not s_in.is_done:
367 in_ready = s_in.select() 367 in_ready = s_in.select()
368 for s in in_ready: 368 for s in in_ready:
369 buf = s.read() 369 buf = s.read().decode()
370 if not buf: 370 if not buf:
371 s.close() 371 s.close()
372 s_in.remove(s) 372 s_in.remove(s)