From d19b51a1eedfa1d859fc298d4d4c2abbbb69aefe Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 21 Oct 2012 15:05:18 -0400 Subject: Minor style tweaks --- coverage/xmlreport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/xmlreport.py') diff --git a/coverage/xmlreport.py b/coverage/xmlreport.py index a65d5a6d..03f910c8 100644 --- a/coverage/xmlreport.py +++ b/coverage/xmlreport.py @@ -114,7 +114,7 @@ class XmlReporter(Reporter): # Q: can we get info about the number of times a statement is # executed? If so, that should be recorded here. - xline.setAttribute("hits", str(int(not line in analysis.missing))) + xline.setAttribute("hits", str(int(line not in analysis.missing))) if self.arcs: if line in branch_stats: -- cgit v1.2.1