diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-03 17:10:56 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-03 17:10:56 -0400 |
commit | 3f9716518f854fc9396f815b1c3a8feb7c7397d4 (patch) | |
tree | e9cced3612cd9edf7a4da3ac72d646aab2b70858 /igor.py | |
parent | 9d6abb08c303e6a0cc2c08f71067c0b84977e4e6 (diff) | |
download | python-coveragepy-git-3f9716518f854fc9396f815b1c3a8feb7c7397d4.tar.gz |
Don't examine .egg-info dirs.
Diffstat (limited to 'igor.py')
-rw-r--r-- | igor.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -55,7 +55,7 @@ def do_zip_mods(args): def do_check_eol(args): """Check files for incorrect newlines and trailing whitespace.""" - ignore_dirs = ['.svn', '.hg', '.tox', '.tox_kits'] + ignore_dirs = ['.svn', '.hg', '.tox', '.tox_kits', 'coverage.egg-info'] checked = set([]) def check_file(fname, crlf=True, trail_white=True): |