diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-04-18 07:28:37 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-04-18 07:28:37 -0400 |
commit | b5b0316a0625b3e3b1fe258375c7d37a0bd0072c (patch) | |
tree | 35b76edd1bdde3dfebbc25a338f227c529e232ad /coverage/control.py | |
parent | f99806b7b414cc5aea3e8b0a016f2dad68e6539d (diff) | |
parent | 42f5efa9bc9e5ec2fd02f9cf6b95541a93fca632 (diff) | |
download | python-coveragepy-b5b0316a0625b3e3b1fe258375c7d37a0bd0072c.tar.gz |
Automated merge with ssh://bitbucket.org/ned/coveragepy
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/coverage/control.py b/coverage/control.py index ddeb77c..eea6b00 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -222,14 +222,6 @@ class coverage(object): # can't do anything with the data later anyway. return False - if filename.endswith(".html"): - # Jinja and maybe other templating systems compile templates into - # Python code, but use the template filename as the filename in - # the compiled code. Of course, those filenames are useless later - # so don't bother collecting. TODO: How should we really separate - # out good file extensions from bad? - return False - self._check_for_packages() # Compiled Python files have two filenames: frame.f_code.co_filename is |