summaryrefslogtreecommitdiff
path: root/coverage/summary.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2012-12-01 15:29:25 -0500
committerNed Batchelder <ned@nedbatchelder.com>2012-12-01 15:29:25 -0500
commitb6c24ae9d590c387419c8bc192f92db983b7a29e (patch)
treeb9459be50ed2f673d29ce65349f3af4ca2312e2b /coverage/summary.py
parenta4fd5bb6b39ad751191c070106e3ad138797c56a (diff)
downloadpython-coveragepy-b6c24ae9d590c387419c8bc192f92db983b7a29e.tar.gz
Switch to our own prama syntax, so the tests can use the std without getting mixed up.
Diffstat (limited to 'coverage/summary.py')
-rw-r--r--coverage/summary.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/summary.py b/coverage/summary.py
index 4b1cd14..c99c530 100644
--- a/coverage/summary.py
+++ b/coverage/summary.py
@@ -62,7 +62,7 @@ class SummaryReporter(Reporter):
args += (analysis.missing_formatted(),)
outfile.write(fmt_coverage % args)
total += nums
- except KeyboardInterrupt: # pragma: no cover
+ except KeyboardInterrupt: # pragma: not covered
raise
except:
report_it = not self.config.ignore_errors