diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-05-24 06:40:47 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-05-24 06:40:47 -0400 |
commit | e2fbf908a516a2333a1b2458a90880e74ecab29b (patch) | |
tree | b30d24c5bba7be91649ab2cce98516677f0c744a /coverage/control.py | |
parent | 403b014f4900beab6646bdcf6334d9db25ceb99b (diff) | |
download | python-coveragepy-e2fbf908a516a2333a1b2458a90880e74ecab29b.tar.gz |
Fix old uses of 'prefixes' that are now 'patterns'
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 2 |
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): |