From c8ef991945f1f945731c6ed6546c787e642f5a92 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 23 Nov 2014 08:10:40 -0500 Subject: Remove needless KeyboardInterrupt catching --- coverage/summary.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'coverage/summary.py') diff --git a/coverage/summary.py b/coverage/summary.py index 33aa017..10ac7e2 100644 --- a/coverage/summary.py +++ b/coverage/summary.py @@ -80,8 +80,6 @@ class SummaryReporter(Reporter): args += (missing_fmtd,) outfile.write(fmt_coverage % args) total += nums - except KeyboardInterrupt: # pragma: not covered - raise except Exception: report_it = not self.config.ignore_errors if report_it: -- cgit v1.2.1