summaryrefslogtreecommitdiff
path: root/coverage/control.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-05-24 06:40:47 -0400
committerNed Batchelder <ned@nedbatchelder.com>2010-05-24 06:40:47 -0400
commite2fbf908a516a2333a1b2458a90880e74ecab29b (patch)
treeb30d24c5bba7be91649ab2cce98516677f0c744a /coverage/control.py
parent403b014f4900beab6646bdcf6334d9db25ceb99b (diff)
downloadpython-coveragepy-e2fbf908a516a2333a1b2458a90880e74ecab29b.tar.gz
Fix old uses of 'prefixes' that are now 'patterns'
Diffstat (limited to 'coverage/control.py')
-rw-r--r--coverage/control.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/control.py b/coverage/control.py
index 6770a65..4a0e675 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -180,7 +180,7 @@ class coverage(object):
if canonical.startswith(self.cover_prefix):
return False
- # Check the file against the include and omit prefixes.
+ # Check the file against the include and omit patterns.
if self.include:
for pattern in self.include:
if fnmatch.fnmatch(canonical, pattern):