diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-12-02 06:25:22 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-12-02 06:25:22 -0500 |
commit | c76154ce75adbebb461d4cb0a524e6c08b4ed5f7 (patch) | |
tree | db3cab030f8b45691f9265481bbf7767ce1321da /coverage/files.py | |
parent | 8a90f2d6b02c7fb60cd70fc3d4f19618e2d1d50f (diff) | |
download | python-coveragepy-c76154ce75adbebb461d4cb0a524e6c08b4ed5f7.tar.gz |
Fix english word.
Diffstat (limited to 'coverage/files.py')
-rw-r--r-- | coverage/files.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/files.py b/coverage/files.py index 31fe61a..c2a5ec7 100644 --- a/coverage/files.py +++ b/coverage/files.py @@ -209,7 +209,7 @@ class FnmatchMatcher(object): if sys.platform == 'win32': # Windows is also case-insensitive. BTW: the regex docs say that # flags like (?i) have to be at the beginning, but fnmatch puts - # them at the end, and have two there seems to work fine. + # them at the end, and having two there seems to work fine. fnpats = (p + "(?i)" for p in fnpats) self.re = re.compile(join_regex(fnpats)) |