summaryrefslogtreecommitdiff
path: root/coverage/control.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2011-03-16 20:32:41 -0400
committerNed Batchelder <ned@nedbatchelder.com>2011-03-16 20:32:41 -0400
commit077d39eed98851e0232e208be832e4a77dee878c (patch)
tree16df0e8786321bcd662e4fe786d1e47ec9ba1c6e /coverage/control.py
parentcf6fbd6156e8717da1ce23c70cea93322e7e4bd6 (diff)
downloadpython-coveragepy-git-077d39eed98851e0232e208be832e4a77dee878c.tar.gz
Clean-ups
Diffstat (limited to 'coverage/control.py')
-rw-r--r--coverage/control.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/control.py b/coverage/control.py
index 514f23d9..3369d04e 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -226,8 +226,8 @@ class coverage(object):
self._check_for_packages()
# Compiled Python files have two filenames: frame.f_code.co_filename is
- # the filename at the time the .pyc was compiled. The second name
- # is __file__, which is where the .pyc was actually loaded from. Since
+ # the filename at the time the .pyc was compiled. The second name is
+ # __file__, which is where the .pyc was actually loaded from. Since
# .pyc files can be moved after compilation (for example, by being
# installed), we look for __file__ in the frame and prefer it to the
# co_filename value.