diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-01 15:29:25 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-01 15:29:25 -0500 |
commit | b5d55bd78b613b8386e18c0c4e03782277666325 (patch) | |
tree | 729803569d08d956a15ad720c5839bb0e95fc1e9 /coverage/summary.py | |
parent | 2c84a1f03c89d1adfdf6238f03de1cb9d3c61dc2 (diff) | |
download | python-coveragepy-git-b5d55bd78b613b8386e18c0c4e03782277666325.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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/summary.py b/coverage/summary.py index 4b1cd14e..c99c5303 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 |