From e2fbf908a516a2333a1b2458a90880e74ecab29b Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 24 May 2010 06:40:47 -0400 Subject: Fix old uses of 'prefixes' that are now 'patterns' --- coverage/control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/control.py') 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): -- cgit v1.2.1