summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2013-04-24 20:33:29 +0100
committerLars Wirzenius <liw@liw.fi>2013-04-24 20:33:29 +0100
commit3b1bac289cb330e3fadaa1bbfe0937c5178feb6d (patch)
tree4139b59bf82faecb9dfcd246dd1336d848e142ac
parent039b43b592f1e386d6f4a9c88bf5308a56e1d1a5 (diff)
downloadcliapp-3b1bac289cb330e3fadaa1bbfe0937c5178feb6d.tar.gz
Exclude untestable code from test coveragecliapp-1.20130424
-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