summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cliapp/runcmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cliapp/runcmd.py b/cliapp/runcmd.py
index c05d5ef..41878f5 100644
--- a/cliapp/runcmd.py
+++ b/cliapp/runcmd.py
@@ -176,7 +176,7 @@ def _run_pipeline(procs, feed_stdin, pipe_stdin, pipe_stdout, pipe_stderr):
if rlist or wlist:
try:
r, w, x = select.select(rlist, wlist, [])
- except select.error, e:
+ except select.error, e: # pragma: no cover
err, msg = e.args
if err == errno.EINTR:
break