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
commitcc5a8bed398eed0ab9188e86262c04b6dfc086f3 (patch)
treede015e579a1047ab52f6c5f9d6b21e5d034645ab /coverage/control.py
parentd529c33c5d3434f25d06af872438f8d33153a8bb (diff)
downloadpython-coveragepy-cc5a8bed398eed0ab9188e86262c04b6dfc086f3.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 514f23d..3369d04 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.