diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-11 12:22:03 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-11 12:22:03 -0500 |
commit | de89438a0346e3dca4f7e8afe24efa38810deebe (patch) | |
tree | 82acb47b22bf967a9573651adb6cc18d9bc216a2 /coverage/control.py | |
parent | 99480be7da89cb82cfff01e5d10a2514546faf39 (diff) | |
download | python-coveragepy-git-de89438a0346e3dca4f7e8afe24efa38810deebe.tar.gz |
Windows now reports file names in their correct case. #89 and #203.
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/coverage/control.py b/coverage/control.py index 9523defa..0391352d 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -475,6 +475,7 @@ class coverage(object): # Find files that were never executed at all. for src in self.source: for py_file in find_python_files(src): + py_file = self.file_locator.canonical_filename(py_file) self.data.touch_file(py_file) self._harvested = True |