summaryrefslogtreecommitdiff
path: root/coverage/results.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2011-05-31 09:35:29 -0400
committerNed Batchelder <ned@nedbatchelder.com>2011-05-31 09:35:29 -0400
commit61deec574e9d0181ad986d1276e3d57e8427930d (patch)
tree5e25c531b0a8464be275704a9c6f2f2393456406 /coverage/results.py
parent8389eddf44b9084d0173bcce79d640250d72a455 (diff)
parentadde2749360d445328405b9a5197960df181b3ad (diff)
downloadpython-coveragepy-git-61deec574e9d0181ad986d1276e3d57e8427930d.tar.gz
Automated merge with ssh://bitbucket.org/ned/coveragepy
Diffstat (limited to 'coverage/results.py')
-rw-r--r--coverage/results.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/results.py b/coverage/results.py
index d92b503c..7b032f18 100644
--- a/coverage/results.py
+++ b/coverage/results.py
@@ -97,8 +97,8 @@ class Analysis(object):
# trouble, and here is where it's the least burden to remove them.
unpredicted = [
e for e in executed
- if e not in possible
- and e[0] != e[1]
+ if e not in possible
+ and e[0] != e[1]
and e[0] not in self.no_branch
]
return sorted(unpredicted)