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 | 90072a5d53f5f8d14be67d937990761b62190ad8 (patch) | |
tree | a66e35315bf7155a6fd1a5355a499d7f3fc5d2d3 /coverage/control.py | |
parent | c49fc1a261e47d5eabea8575c3a303cd5dd367ee (diff) | |
download | python-coveragepy-git-90072a5d53f5f8d14be67d937990761b62190ad8.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 6770a65e..4a0e675e 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): |